From ce0bf98311dca9f6383916a075de599c3a5478b9 Mon Sep 17 00:00:00 2001 From: "BB.Wang" Date: Tue, 5 Dec 2023 08:26:38 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E8=AA=BF=E6=95=B4=E5=93=81=E8=B3=AA?= =?UTF-8?q?=E7=9C=8B=E6=9D=BF=E5=8F=8AFQC=E9=A9=97=E9=80=80=E5=BE=8C?= =?UTF-8?q?=E6=8B=8B=E8=BD=89SMS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/FQCController.cs | 5 ++ .../Controllers/RPTController.cs | 2 +- AMESCoreStudio.Web/HttpApis/AMES/IFQC.cs | 8 +++ .../AMES/FqcResultMasterController.cs | 64 +++++++++++++++++++ .../Controllers/BLL/RPTController.cs | 26 ++++++-- 5 files changed, 98 insertions(+), 7 deletions(-) diff --git a/AMESCoreStudio.Web/Controllers/FQCController.cs b/AMESCoreStudio.Web/Controllers/FQCController.cs index 03b0f57c..0ac82978 100644 --- a/AMESCoreStudio.Web/Controllers/FQCController.cs +++ b/AMESCoreStudio.Web/Controllers/FQCController.cs @@ -1388,6 +1388,11 @@ namespace AMESCoreStudio.Web.Controllers // 允收且不是無序號供單需要FQC過站 if (model.QaResult == "P" && fqcItem.InspectionStatus != "D") result = await _fqcApi.PassingByFQC(model.InhouseNo, model.SeqID, GetLogInUserID()); + //2023-12-04 BB.Wang Add FQC驗退後,拋單至SMS系統開CAR單 + else if (model.QaResult == "R") + { + await _fqcApi.PostSMS_CAR_FQC(JsonConvert.SerializeObject(fqcResultMaster)); + } if (!result.Success) { diff --git a/AMESCoreStudio.Web/Controllers/RPTController.cs b/AMESCoreStudio.Web/Controllers/RPTController.cs index 3726bb78..24c89390 100644 --- a/AMESCoreStudio.Web/Controllers/RPTController.cs +++ b/AMESCoreStudio.Web/Controllers/RPTController.cs @@ -87,7 +87,7 @@ namespace AMESCoreStudio.Web.Controllers var eDate = new DateTime(Data.Year, Data.Month, DateTime.DaysInMonth(Data.Year, Data.Month)).ToString("yyyy/MM/dd"); var werkNo = string.Empty; - var werksNoArrsy = new List { "YS31", "YS37", "YS28", "YS03" }; + var werksNoArrsy = new List { "YS31", "YS37", "YS39", "YS03", "YS28", "YS15"}; if (werksNoArrsy.Count >= werksNoSeq + 1) { werkNo = werksNoArrsy[werksNoSeq]; diff --git a/AMESCoreStudio.Web/HttpApis/AMES/IFQC.cs b/AMESCoreStudio.Web/HttpApis/AMES/IFQC.cs index 424c17e2..206ab056 100644 --- a/AMESCoreStudio.Web/HttpApis/AMES/IFQC.cs +++ b/AMESCoreStudio.Web/HttpApis/AMES/IFQC.cs @@ -298,6 +298,14 @@ namespace AMESCoreStudio.Web [WebApiClient.Attributes.HttpPut("api/FqcResultMaster")] ITask> PutFqcResultMaster([FromBody, RawJsonContent] string model); + ///2023-12-04 BB.Wang Add FQC驗退後,拋單至SMS系統開CAR單 + /// + /// 拋單至SMS系統開CAR單 + /// + /// + [WebApiClient.Attributes.HttpPost("api/FqcResultMaster/BySMS_CAR")] + ITask PostSMS_CAR_FQC([FromBody, RawJsonContent] string model); + /// /// 新增FQC檢驗結果明細 /// diff --git a/AMESCoreStudio.WebApi/Controllers/AMES/FqcResultMasterController.cs b/AMESCoreStudio.WebApi/Controllers/AMES/FqcResultMasterController.cs index 9a6d185a..361758cd 100644 --- a/AMESCoreStudio.WebApi/Controllers/AMES/FqcResultMasterController.cs +++ b/AMESCoreStudio.WebApi/Controllers/AMES/FqcResultMasterController.cs @@ -9,6 +9,10 @@ using AMESCoreStudio.WebApi; using AMESCoreStudio.WebApi.Models.AMES; using AMESCoreStudio.CommonTools.Result; using AMESCoreStudio.WebApi.DTO; +using System.Data; +using System.Data.Common; +using Dapper; +using AMESCoreStudio.WebApi.Extensions; namespace AMESCoreStudio.WebApi.Controllers.AMES { @@ -20,6 +24,7 @@ namespace AMESCoreStudio.WebApi.Controllers.AMES public class FqcResultMasterController : ControllerBase { private readonly AMESContext _context; + private readonly SMSContext _SMS_context; public FqcResultMasterController(AMESContext context) { @@ -394,6 +399,65 @@ namespace AMESCoreStudio.WebApi.Controllers.AMES return result; } + ///2023-12-04 BB.Wang Add FQC驗退後,拋單至SMS系統開CAR單 + /// + /// 新增FQC檢驗單結果Fail to SMS CAR + /// + /// + /// + [HttpPost("BySMS_CAR")] + public async Task PostSMS_CAR_FQC(FqcResultMaster fqcResultMaster) + { + SMSContext _SMS_context = new SMSContext(); + + DbConnection conn = _SMS_context.Database.GetDbConnection(); + if (conn.State != ConnectionState.Open) + { + await conn.OpenAsync(); + } + + #region FQC SQL + var sMS_SQL = @" INSERT INTO [dbo].[TEMP_QC_RETURN]([SMSProcess],[QCType],[QCFormID],[QCDate],[MFID],[ProductID],[ModelName], + [MOID],[DefectQty],[SamplQty],[IsMedicalModel] ,[InspectorID],[ExtNotes],[VendorCode],[VendorName]) + VALUES( + '0', + 'FQC', + @QCFormID, + @QCDate, + 'YS00', + @ProductID, + @ModelName, + @MOID, + @DefectQty, + @SamplQty, + @IsMedicalModel, + @InspectorID, + @ExtNotes, + '立德產線', + '' + )"; + #endregion + + DynamicParameters p = new DynamicParameters(); + + #region FQC SQL參數 + p.Add("QCFormID", fqcResultMaster.InhouseNo); + p.Add("QCDate", fqcResultMaster.EndTime.ToString("yyyyMMdd")); + p.Add("ProductID", fqcResultMaster.ItemNo); + p.Add("ModelName", fqcResultMaster.ModelNo); + p.Add("MOID", fqcResultMaster.WipNo); + p.Add("DefectQty", fqcResultMaster.FailQty); + p.Add("SamplQty", fqcResultMaster.LotQty); + p.Add("IsMedicalModel", "0"); + p.Add("InspectorID", "205"); + p.Add("ExtNotes", fqcResultMaster.Note); + #endregion + + var result = await _SMS_context.Database.DapperExecuteAsync(sMS_SQL, p); + + return result; + } + // DELETE: api/FqcResultMaster/5 [HttpDelete("{id}")] public async Task> DeleteFqcResultMaster(int id) diff --git a/AMESCoreStudio.WebApi/Controllers/BLL/RPTController.cs b/AMESCoreStudio.WebApi/Controllers/BLL/RPTController.cs index e71f4671..e20c992a 100644 --- a/AMESCoreStudio.WebApi/Controllers/BLL/RPTController.cs +++ b/AMESCoreStudio.WebApi/Controllers/BLL/RPTController.cs @@ -1065,6 +1065,8 @@ namespace AMESCoreStudio.WebApi.Controllers.BLL werksNo = "YS31"; } + string sEnd_Date = DateTime.Parse(eDate).AddDays(1).ToString("yyyy/MM/dd"); + var result = new RPT002ViewDto(); var vYear = DateTime.Parse(sDate).Year; @@ -1176,7 +1178,9 @@ namespace AMESCoreStudio.WebApi.Controllers.BLL // FPY 立德 Board #region 立德 Board //result.FPYBoard_LEI = 99.15; - var f_FPYBoard_LEI = await new WipStationController(_context).GetWipStation4QRS014GroupB(null, sDate, eDate, null, "YS00", null); + //2023-11-30 BB.Wang Modify + //var f_FPYBoard_LEI = await new WipStationController(_context).GetWipStation4QRS014GroupB(null, sDate, eDate, null, "YS00", null); + var f_FPYBoard_LEI = await new WipStationController(_context).GetWipStation4QRS014GroupS(null, sDate, sEnd_Date, null, "YS00", "FqcDate"); if (f_FPYBoard_LEI.DataTotal > 0) { double sum_rate = 100.0; @@ -1281,7 +1285,9 @@ namespace AMESCoreStudio.WebApi.Controllers.BLL // FPY 立德 System #region 立德 System //result.FPYSystem_LEI = 92.12; - var f_FPYSystem_LEI = await new WipStationController(_context).GetWipStation4QRS014GroupS(null, sDate, eDate, null, "YS00", null); + //2023-11-30 BB.Wang Modify + //var f_FPYSystem_LEI = await new WipStationController(_context).GetWipStation4QRS014GroupS(null, sDate, eDate, null, "YS00", null); + var f_FPYSystem_LEI = await new WipStationController(_context).GetWipStation4QRS014GroupB(null, sDate, sEnd_Date, null, "YS00", "FqcDate"); if (f_FPYSystem_LEI.DataTotal > 0) { double sum_rate = 100.0; @@ -1386,7 +1392,9 @@ namespace AMESCoreStudio.WebApi.Controllers.BLL // FPY 立德 Medical #region 立德 Medical //result.FPYMedical_LEI = 90.11; - var f_FPYMedical_LEI = await new WipStationController(_context).GetWipStation4QRS014GroupS(null, sDate, eDate, null, "YS00", null); + //2023-11-30 BB.Wang Modify + //var f_FPYMedical_LEI = await new WipStationController(_context).GetWipStation4QRS014GroupS(null, sDate, eDate, null, "YS00", null); + var f_FPYMedical_LEI = await new WipStationController(_context).GetWipStation4QRS014GroupM(null, sDate, sEnd_Date, null, "YS00", "FqcDate"); if (f_FPYMedical_LEI.DataTotal > 0) { double sum_rate = 100.0; @@ -1491,7 +1499,9 @@ namespace AMESCoreStudio.WebApi.Controllers.BLL // FPY Board #region 立德 委外 Board //result.FPYBoard = 100.00; - var f_FPYBoard = await new WipStationController(_context).GetWipStation4QRS014GroupB(null, sDate, eDate, null, werksNo, null); + //2023-11-30 BB.Wang Modify + //var f_FPYBoard = await new WipStationController(_context).GetWipStation4QRS014GroupB(null, sDate, eDate, null, werksNo, null); + var f_FPYBoard = await new WipStationController(_context).GetWipStation4QRS014GroupS(null, sDate, sEnd_Date, null, werksNo, "FqcDate"); if (f_FPYBoard.DataTotal > 0) { double sum_rate = 100.0; @@ -1596,7 +1606,9 @@ namespace AMESCoreStudio.WebApi.Controllers.BLL // FPY System #region 立德 委外 System //result.FPYSystem = 99.12; - var f_FPYSystem = await new WipStationController(_context).GetWipStation4QRS014GroupS(null, sDate, eDate, null, werksNo, null); + //2023-11-30 BB.Wang Modify + //var f_FPYSystem = await new WipStationController(_context).GetWipStation4QRS014GroupS(null, sDate, eDate, null, werksNo, null); + var f_FPYSystem = await new WipStationController(_context).GetWipStation4QRS014GroupB(null, sDate, sEnd_Date, null, werksNo, "FqcDate"); if (f_FPYSystem.DataTotal > 0) { double sum_rate = 100.0; @@ -1701,7 +1713,9 @@ namespace AMESCoreStudio.WebApi.Controllers.BLL // FPY Medical #region 立德 委外 Medical //result.FPYMedical = 12.12; - var f_FPYMedical = await new WipStationController(_context).GetWipStation4QRS014GroupS(null, sDate, eDate, null, werksNo, null); + //2023-11-30 BB.Wang Modify + //var f_FPYMedical = await new WipStationController(_context).GetWipStation4QRS014GroupS(null, sDate, eDate, null, werksNo, null); + var f_FPYMedical = await new WipStationController(_context).GetWipStation4QRS014GroupM(null, sDate, sEnd_Date, null, werksNo, "FqcDate"); if (f_FPYMedical.DataTotal > 0) { double sum_rate = 100.0; From 5f6d9df4b61000c622d8dafb70a172d54ff384b7 Mon Sep 17 00:00:00 2001 From: Sai Date: Wed, 6 Dec 2023 19:58:28 +0800 Subject: [PATCH 2/3] =?UTF-8?q?1.=20=E6=96=B0=E5=A2=9E=20=E6=98=B6?= =?UTF-8?q?=E4=BA=A8=E5=B7=A5=E5=96=AE=E6=9F=A5=E8=A9=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/RPTController.cs | 764 ++++- AMESCoreStudio.Web/HttpApis/AMES/IESUN.cs | 97 + AMESCoreStudio.Web/Views/RPT/RPT005.cshtml | 193 ++ AMESCoreStudio.Web/Views/RPT/RPT005R.cshtml | 891 +++++ .../logs/stdout_20230916074021_12584.log | 41 - .../logs/stdout_20230916080205_9584.log | 0 .../logs/stdout_20230916081621_20992.log | 0 .../logs/stdout_20230919144118_17268.log | 115 - .../logs/stdout_20230919151214_17724.log | 41 - .../logs/stdout_20230919151353_20868.log | 41 - .../logs/stdout_20230919151422_7216.log | 80 - .../logs/stdout_20230919153807_20944.log | 267 -- .../logs/stdout_20230920123754_22404.log | 0 .../logs/stdout_20231001071850_21240.log | 330 -- .../logs/stdout_20231001073042_22276.log | 0 .../logs/stdout_20231001073211_26316.log | 0 .../logs/stdout_20231001073430_24404.log | 308 -- .../logs/stdout_20231001074043_20604.log | 323 -- .../logs/stdout_20231001074403_23884.log | 303 -- .../logs/stdout_20231001075556_6776.log | 184 - .../logs/stdout_20231001080546_24496.log | 467 --- .../logs/stdout_20231001082958_27400.log | 58 - .../logs/stdout_20231001083205_12908.log | 140 - .../logs/stdout_20231001092336_20860.log | 167 - .../logs/stdout_20231001093059_7608.log | 98 - .../logs/stdout_20231001093734_22004.log | 160 - .../logs/stdout_20231001094012_23768.log | 93 - .../logs/stdout_20231001094131_17932.log | 58 - .../logs/stdout_20231001094308_26848.log | 186 -- .../logs/stdout_20231001094543_25416.log | 58 - .../logs/stdout_20231001094635_32116.log | 58 - .../logs/stdout_20231001094959_8780.log | 93 - .../logs/stdout_20231001102250_32840.log | 58 - .../logs/stdout_20231001102551_28064.log | 58 - .../logs/stdout_20231001102702_8728.log | 58 - .../logs/stdout_20231001103119_4108.log | 269 -- .../logs/stdout_20231001103423_26224.log | 58 - .../logs/stdout_20231004120936_14388.log | 127 - .../logs/stdout_20231013201123_6836.log | 128 - .../logs/stdout_20231015101838_24728.log | 327 -- .../logs/stdout_20231015103240_29304.log | 0 .../logs/stdout_20231015103319_25416.log | 0 .../logs/stdout_20231015112013_13412.log | 232 -- .../logs/stdout_20231015114037_18696.log | 103 - .../logs/stdout_20231015114322_20660.log | 58 - .../logs/stdout_20231015114654_9668.log | 58 - .../logs/stdout_20231015115245_27936.log | 0 .../logs/stdout_20231015121945_22156.log | 0 .../logs/stdout_20231015123721_17252.log | 75 - .../logs/stdout_20231015124427_24476.log | 0 .../logs/stdout_20231015125252_12012.log | 0 .../logs/stdout_20231015131036_1848.log | 58 - .../logs/stdout_20231015131428_17136.log | 58 - .../logs/stdout_20231015132501_24908.log | 0 .../logs/stdout_20231015132809_20848.log | 0 .../logs/stdout_20231015132850_23248.log | 0 .../logs/stdout_20231015141337_12316.log | 58 - .../logs/stdout_20231015141643_6908.log | 88 - .../logs/stdout_20231015141915_27744.log | 142 - .../logs/stdout_20231015142424_26412.log | 58 - .../logs/stdout_20231015142854_27824.log | 207 -- .../logs/stdout_20231015143335_31616.log | 0 .../logs/stdout_20231015143536_22012.log | 58 - .../logs/stdout_20231015143737_24660.log | 58 - .../logs/stdout_20231015144248_24524.log | 58 - .../logs/stdout_20231015150032_25388.log | 58 - .../logs/stdout_20231015151201_22396.log | 0 .../logs/stdout_20231015153257_17980.log | 0 .../logs/stdout_20231015153516_25216.log | 0 .../logs/stdout_20231015165947_22888.log | 0 .../logs/stdout_20231015170132_23856.log | 0 .../logs/stdout_20231015172012_11868.log | 38 - .../logs/stdout_20231015172736_11136.log | 72 - .../logs/stdout_20231015180944_8776.log | 41 - .../logs/stdout_20231015181110_4628.log | 41 - .../logs/stdout_20231015182201_17520.log | 127 - .../logs/stdout_20231015182623_17152.log | 92 - .../logs/stdout_20231015183629_15900.log | 92 - .../logs/stdout_20231015184013_26416.log | 0 .../logs/stdout_20231016120221_20288.log | 112 - .../logs/stdout_20231016121550_2340.log | 0 .../logs/stdout_20231016130745_10628.log | 75 - .../logs/stdout_20231016131453_22116.log | 41 - .../logs/stdout_20231016131627_26928.log | 41 - .../logs/stdout_20231016132315_12576.log | 0 .../logs/stdout_20231016132544_26656.log | 0 .../logs/stdout_20231016132639_12368.log | 75 - .../logs/stdout_20231016141413_6952.log | 75 - .../logs/stdout_20231016141838_25004.log | 129 - .../logs/stdout_20231016142418_22672.log | 144 - .../logs/stdout_20231016142903_13976.log | 78 - .../logs/stdout_20231016143116_28820.log | 78 - .../logs/stdout_20231017120404_4500.log | 0 .../logs/stdout_20231017120450_11848.log | 0 .../logs/stdout_20231017120515_12112.log | 0 .../logs/stdout_20231017120559_1732.log | 0 .../logs/stdout_20231017120659_23124.log | 41 - .../logs/stdout_20231017121122_22648.log | 354 -- .../logs/stdout_20231017123920_26924.log | 180 - .../logs/stdout_20231017125201_18404.log | 422 --- .../logs/stdout_20231027121405_8592.log | 41 - .../logs/stdout_20231027121621_9968.log | 460 --- .../logs/stdout_20231027124626_13640.log | 0 .../logs/stdout_20231027124642_4264.log | 41 - .../logs/stdout_20231027125827_5444.log | 1017 ------ .../logs/stdout_20231027140553_19340.log | 1363 -------- .../logs/stdout_20231027143222_5536.log | 41 - .../logs/stdout_20231027143339_13068.log | 76 - .../logs/stdout_20231029034345_31076.log | 180 - .../logs/stdout_20231029044954_16568.log | 41 - .../logs/stdout_20231029162848_23208.log | 143 - .../logs/stdout_20231031130907_7316.log | 41 - .../logs/stdout_20231031131020_14688.log | 0 .../logs/stdout_20231031131104_24296.log | 0 .../logs/stdout_20231031131906_26768.log | 339 -- .../logs/stdout_20231031133142_12216.log | 633 ---- .../logs/stdout_20231101113639_29028.log | 58 - .../logs/stdout_20231101114634_17780.log | 501 --- .../logs/stdout_20231101124912_17752.log | 173 - .../logs/stdout_20231101134422_34476.log | 58 - .../logs/stdout_20231101134545_10860.log | 285 -- .../logs/stdout_20231102020426_32832.log | 203 -- .../logs/stdout_20231102053535_38772.log | 282 -- .../logs/stdout_20231102055611_49824.log | 206 -- .../logs/stdout_20231102060849_6756.log | 0 .../logs/stdout_20231102061231_44588.log | 0 .../logs/stdout_20231102090844_31288.log | 98 - .../logs/stdout_20231102093446_32576.log | 0 .../logs/stdout_20231102093506_31044.log | 361 -- .../logs/stdout_20231102094420_4588.log | 58 - .../logs/stdout_20231103014622_27520.log | 108 - .../logs/stdout_20231103034922_45080.log | 606 ---- .../logs/stdout_20231103035424_42824.log | 0 .../logs/stdout_20231103035633_46920.log | 0 .../logs/stdout_20231103035945_19512.log | 58 - .../logs/stdout_20231104031938_18136.log | 223 -- .../logs/stdout_20231104035038_4624.log | 310 -- .../logs/stdout_20231104041222_8868.log | 303 -- .../logs/stdout_20231104041609_7364.log | 220 -- .../logs/stdout_20231104044129_36640.log | 58 - .../logs/stdout_20231104044427_6552.log | 167 - .../logs/stdout_20231104045652_22576.log | 189 -- .../logs/stdout_20231104063721_13900.log | 171 - .../logs/stdout_20231104065607_35248.log | 147 - .../logs/stdout_20231104065902_22076.log | 98 - .../logs/stdout_20231104080531_24244.log | 58 - .../logs/stdout_20231104083341_11460.log | 186 -- .../logs/stdout_20231104083634_16400.log | 58 - .../logs/stdout_20231104084046_34736.log | 150 - .../logs/stdout_20231105065600_18368.log | 111 - .../logs/stdout_20231105072845_20992.log | 58 - .../logs/stdout_20231105073741_9100.log | 131 - .../logs/stdout_20231105074215_32740.log | 237 -- .../logs/stdout_20231105075725_35032.log | 58 - .../logs/stdout_20231105081403_27096.log | 112 - .../logs/stdout_20231105083256_33820.log | 58 - .../logs/stdout_20231105084018_33428.log | 113 - .../logs/stdout_20231105084555_31044.log | 165 - .../logs/stdout_20231105085352_8384.log | 58 - .../logs/stdout_20231105090103_11732.log | 165 - .../logs/stdout_20231105090741_30580.log | 585 ---- .../logs/stdout_20231105094702_8208.log | 58 - .../logs/stdout_20231105094822_5344.log | 58 - .../logs/stdout_20231105095222_34676.log | 459 --- .../logs/stdout_20231105102429_14440.log | 58 - .../logs/stdout_20231105102957_32256.log | 58 - .../logs/stdout_20231105132250_27980.log | 1965 ----------- .../logs/stdout_20231105134552_23036.log | 89 - .../logs/stdout_20231105134833_27740.log | 1374 -------- .../logs/stdout_20231105155134_10800.log | 264 -- .../logs/stdout_20231105161521_10008.log | 306 -- .../logs/stdout_20231105163557_32584.log | 130 - .../logs/stdout_20231105164108_18280.log | 58 - .../logs/stdout_20231105164736_30092.log | 58 - .../logs/stdout_20231105165432_25964.log | 93 - .../logs/stdout_20231105165951_22144.log | 58 - .../logs/stdout_20231105170213_21164.log | 58 - .../logs/stdout_20231105170502_24204.log | 58 - .../logs/stdout_20231105171150_35476.log | 113 - .../logs/stdout_20231105171339_8308.log | 58 - .../logs/stdout_20231105171449_17512.log | 58 - .../logs/stdout_20231105171609_24836.log | 58 - .../logs/stdout_20231105171806_26920.log | 163 - .../logs/stdout_20231105175747_23920.log | 199 -- .../logs/stdout_20231105180311_33948.log | 58 - .../logs/stdout_20231106014541_46896.log | 0 .../logs/stdout_20231106014801_17600.log | 0 .../logs/stdout_20231106034153_16064.log | 113 - .../logs/stdout_20231106035254_34908.log | 112 - .../logs/stdout_20231106035655_44376.log | 202 -- .../logs/stdout_20231106051140_33808.log | 1213 ------- .../logs/stdout_20231106083959_34592.log | 259 -- .../logs/stdout_20231107011436_48084.log | 441 --- .../logs/stdout_20231107020152_13888.log | 682 ---- .../logs/stdout_20231107074755_26308.log | 167 - .../logs/stdout_20231107075457_41440.log | 192 -- .../logs/stdout_20231107095309_15660.log | 223 -- .../logs/stdout_20231107095643_8264.log | 262 -- .../logs/stdout_20231107101213_7932.log | 318 -- .../logs/stdout_20231107101753_15484.log | 411 --- .../logs/stdout_20231107103302_17740.log | 113 - .../logs/stdout_20231107113923_27892.log | 111 - .../logs/stdout_20231107115310_34680.log | 222 -- .../logs/stdout_20231107120037_25396.log | 734 ---- .../logs/stdout_20231107123058_28100.log | 226 -- .../logs/stdout_20231107123735_21312.log | 58 - .../logs/stdout_20231107123924_24796.log | 2964 ----------------- .../logs/stdout_20231107135337_15832.log | 110 - .../logs/stdout_20231107140346_7460.log | 110 - .../logs/stdout_20231107141542_9756.log | 58 - .../logs/stdout_20231107142205_29056.log | 158 - .../logs/stdout_20231107143055_4788.log | 46 - .../logs/stdout_20231107143226_9240.log | 182 - .../logs/stdout_20231107143820_17528.log | 1277 ------- .../logs/stdout_20231107150850_7932.log | 978 ------ .../logs/stdout_20231107153543_35756.log | 412 --- .../logs/stdout_20231107154024_23564.log | 110 - .../logs/stdout_20231107154333_19800.log | 211 -- .../logs/stdout_20231108015818_16472.log | 266 -- .../logs/stdout_20231108020312_17436.log | 113 - .../logs/stdout_20231108025847_15652.log | 0 .../logs/stdout_20231108083418_892.log | 1333 -------- .../logs/stdout_20231109011856_6692.log | 1189 ------- .../logs/stdout_20231109015448_13088.log | 438 --- .../logs/stdout_20231109021305_12976.log | 454 --- .../logs/stdout_20231109021646_21916.log | 163 - .../logs/stdout_20231109022148_10284.log | 112 - .../logs/stdout_20231109022520_2512.log | 480 --- .../logs/stdout_20231109022934_16040.log | 113 - .../logs/stdout_20231109031646_13816.log | 1040 ------ .../logs/stdout_20231109032609_23676.log | 0 .../logs/stdout_20231109032632_23880.log | 164 - .../logs/stdout_20231109033020_5160.log | 162 - .../logs/stdout_20231109033639_25276.log | 164 - .../logs/stdout_20231109033901_11140.log | 412 --- .../logs/stdout_20231109034846_24848.log | 230 -- .../logs/stdout_20231109113559_22368.log | 389 --- .../logs/stdout_20231109120956_36676.log | 58 - .../logs/stdout_20231109122534_28540.log | 204 -- .../logs/stdout_20231109125458_11680.log | 58 - .../logs/stdout_20231109130520_15928.log | 148 - .../logs/stdout_20231109131027_35700.log | 450 --- .../logs/stdout_20231110124822_5292.log | 780 ----- .../logs/stdout_20231110135028_4572.log | 164 - .../logs/stdout_20231110135734_34676.log | 99 - .../logs/stdout_20231110135950_21804.log | 492 --- .../logs/stdout_20231110142432_21224.log | 58 - .../logs/stdout_20231112114910_12756.log | 58 - .../logs/stdout_20231112120847_11032.log | 110 - .../logs/stdout_20231112121139_31768.log | 162 - .../logs/stdout_20231112121357_11392.log | 110 - .../logs/stdout_20231112121524_32216.log | 258 -- .../logs/stdout_20231112122921_27772.log | 217 -- .../logs/stdout_20231112123910_33968.log | 212 -- .../logs/stdout_20231112124342_1840.log | 382 --- .../logs/stdout_20231112125616_8896.log | 180 - .../logs/stdout_20231112134048_15716.log | 103 - .../logs/stdout_20231112134708_29064.log | 58 - .../logs/stdout_20231112134841_9960.log | 103 - .../logs/stdout_20231112135119_1328.log | 58 - .../logs/stdout_20231112135639_29832.log | 58 - .../logs/stdout_20231112135730_27000.log | 58 - .../logs/stdout_20231112135926_23204.log | 58 - .../logs/stdout_20231112140055_35984.log | 58 - .../logs/stdout_20231112140550_19080.log | 58 - .../logs/stdout_20231112141520_27044.log | 147 - .../logs/stdout_20231112142000_26844.log | 330 -- .../logs/stdout_20231112142451_20024.log | 112 - .../logs/stdout_20231112142933_14612.log | 162 - .../logs/stdout_20231112151334_14684.log | 867 ----- .../logs/stdout_20231112173348_9808.log | 168 - .../logs/stdout_20231112175021_17928.log | 58 - .../logs/stdout_20231112180046_33292.log | 293 -- .../logs/stdout_20231113012057_31140.log | 186 -- .../logs/stdout_20231113012810_1756.log | 320 -- .../logs/stdout_20231113014032_21192.log | 619 ---- .../logs/stdout_20231113022123_21772.log | 1092 ------ .../logs/stdout_20231113052817_15040.log | 401 --- .../logs/stdout_20231113054142_11804.log | 112 - .../logs/stdout_20231113054617_32540.log | 112 - .../logs/stdout_20231113054848_19584.log | 0 .../logs/stdout_20231113054937_25828.log | 147 - .../logs/stdout_20231113055124_37188.log | 322 -- .../logs/stdout_20231113055938_36496.log | 271 -- .../logs/stdout_20231113060430_13252.log | 541 --- .../logs/stdout_20231113062929_32028.log | 112 - .../logs/stdout_20231113063608_32216.log | 162 - .../logs/stdout_20231113113000_25760.log | 549 --- .../logs/stdout_20231113120242_14720.log | 332 -- .../logs/stdout_20231113121653_14200.log | 113 - .../logs/stdout_20231113122024_13944.log | 58 - .../logs/stdout_20231113122340_10020.log | 58 - .../logs/stdout_20231113123040_27548.log | 146 - .../logs/stdout_20231113123359_14216.log | 231 -- .../logs/stdout_20231113123709_11604.log | 113 - .../logs/stdout_20231113124649_3348.log | 387 --- .../logs/stdout_20231113125905_10004.log | 926 ----- .../logs/stdout_20231113133435_30468.log | 281 -- .../logs/stdout_20231113134650_29756.log | 170 - .../logs/stdout_20231113135836_23412.log | 259 -- .../logs/stdout_20231113141314_12320.log | 114 - .../logs/stdout_20231113143650_15872.log | 1409 -------- .../logs/stdout_20231114012913_17556.log | 1270 ------- .../logs/stdout_20231114031439_14888.log | 339 -- .../logs/stdout_20231114032032_34876.log | 410 --- .../logs/stdout_20231114032337_3596.log | 1092 ------ .../logs/stdout_20231114033402_36704.log | 330 -- .../logs/stdout_20231114033736_15724.log | 225 -- .../logs/stdout_20231114034651_27080.log | 1292 ------- .../logs/stdout_20231114054023_13740.log | 164 - .../logs/stdout_20231114054453_32096.log | 684 ---- .../logs/stdout_20231114055534_35828.log | 328 -- .../logs/stdout_20231114064915_35768.log | 469 --- .../logs/stdout_20231115074431_34440.log | 649 ---- .../logs/stdout_20231115082034_27436.log | 58 - .../logs/stdout_20231115083137_2580.log | 222 -- .../logs/stdout_20231115085132_28540.log | 169 - .../logs/stdout_20231115090113_27424.log | 112 - .../logs/stdout_20231115092642_13364.log | 485 --- .../logs/stdout_20231115093557_25004.log | 325 -- .../logs/stdout_20231115094555_26676.log | 113 - .../logs/stdout_20231115094706_35224.log | 166 - .../logs/stdout_20231115095157_31040.log | 222 -- .../logs/stdout_20231115095648_22572.log | 166 - .../logs/stdout_20231115103733_17356.log | 0 .../logs/stdout_20231115131827_23948.log | 263 -- .../logs/stdout_20231115132020_14900.log | 221 -- .../logs/stdout_20231115132500_11600.log | 151 - .../logs/stdout_20231115132708_13436.log | 112 - .../logs/stdout_20231115133042_26284.log | 112 - .../logs/stdout_20231115133221_34932.log | 114 - .../logs/stdout_20231115135930_6664.log | 112 - .../logs/stdout_20231115140047_17016.log | 149 - .../logs/stdout_20231115140336_27756.log | 275 -- .../logs/stdout_20231115144053_12488.log | 163 - .../logs/stdout_20231120063358_24600.log | 422 --- .../logs/stdout_20231120065216_38452.log | 323 -- .../logs/stdout_20231123072925_24312.log | 480 --- .../logs/stdout_20231123075330_25548.log | 542 --- .../logs/stdout_20231123080045_32264.log | 795 ----- .../logs/stdout_20231123080416_38264.log | 220 -- .../logs/stdout_20231123080859_9908.log | 444 --- .../logs/stdout_20231123081015_22284.log | 168 - .../logs/stdout_20231123081315_22600.log | 249 -- .../logs/stdout_20231123081454_35656.log | 522 --- .../logs/stdout_20231123122053_23280.log | 771 ----- .../logs/stdout_20231123123658_11940.log | 58 - .../logs/stdout_20231123124002_9584.log | 58 - .../logs/stdout_20231123124351_18212.log | 168 - .../logs/stdout_20231123124442_3644.log | 168 - .../logs/stdout_20231123124826_25816.log | 168 - .../logs/stdout_20231123125029_15236.log | 113 - .../logs/stdout_20231123125228_21956.log | 0 .../logs/stdout_20231123125740_26572.log | 224 -- 354 files changed, 1942 insertions(+), 79343 deletions(-) create mode 100644 AMESCoreStudio.Web/Views/RPT/RPT005.cshtml create mode 100644 AMESCoreStudio.Web/Views/RPT/RPT005R.cshtml delete mode 100644 AMESCoreStudio.Web/logs/stdout_20230916074021_12584.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20230916080205_9584.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20230916081621_20992.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20230919144118_17268.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20230919151214_17724.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20230919151353_20868.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20230919151422_7216.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20230919153807_20944.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20230920123754_22404.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001071850_21240.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001073042_22276.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001073211_26316.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001073430_24404.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001074043_20604.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001074403_23884.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001075556_6776.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001080546_24496.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001082958_27400.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001083205_12908.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001092336_20860.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001093059_7608.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001093734_22004.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001094012_23768.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001094131_17932.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001094308_26848.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001094543_25416.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001094635_32116.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001094959_8780.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001102250_32840.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001102551_28064.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001102702_8728.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001103119_4108.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231001103423_26224.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231004120936_14388.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231013201123_6836.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015101838_24728.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015103240_29304.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015103319_25416.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015112013_13412.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015114037_18696.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015114322_20660.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015114654_9668.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015115245_27936.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015121945_22156.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015123721_17252.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015124427_24476.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015125252_12012.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015131036_1848.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015131428_17136.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015132501_24908.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015132809_20848.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015132850_23248.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015141337_12316.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015141643_6908.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015141915_27744.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015142424_26412.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015142854_27824.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015143335_31616.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015143536_22012.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015143737_24660.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015144248_24524.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015150032_25388.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015151201_22396.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015153257_17980.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015153516_25216.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015165947_22888.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015170132_23856.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015172012_11868.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015172736_11136.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015180944_8776.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015181110_4628.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015182201_17520.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015182623_17152.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015183629_15900.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231015184013_26416.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016120221_20288.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016121550_2340.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016130745_10628.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016131453_22116.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016131627_26928.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016132315_12576.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016132544_26656.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016132639_12368.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016141413_6952.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016141838_25004.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016142418_22672.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016142903_13976.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231016143116_28820.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231017120404_4500.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231017120450_11848.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231017120515_12112.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231017120559_1732.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231017120659_23124.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231017121122_22648.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231017123920_26924.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231017125201_18404.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231027121405_8592.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231027121621_9968.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231027124626_13640.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231027124642_4264.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231027125827_5444.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231027140553_19340.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231027143222_5536.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231027143339_13068.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231029034345_31076.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231029044954_16568.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231029162848_23208.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231031130907_7316.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231031131020_14688.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231031131104_24296.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231031131906_26768.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231031133142_12216.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231101113639_29028.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231101114634_17780.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231101124912_17752.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231101134422_34476.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231101134545_10860.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231102020426_32832.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231102053535_38772.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231102055611_49824.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231102060849_6756.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231102061231_44588.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231102090844_31288.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231102093446_32576.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231102093506_31044.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231102094420_4588.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231103014622_27520.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231103034922_45080.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231103035424_42824.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231103035633_46920.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231103035945_19512.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104031938_18136.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104035038_4624.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104041222_8868.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104041609_7364.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104044129_36640.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104044427_6552.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104045652_22576.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104063721_13900.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104065607_35248.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104065902_22076.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104080531_24244.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104083341_11460.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104083634_16400.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231104084046_34736.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105065600_18368.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105072845_20992.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105073741_9100.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105074215_32740.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105075725_35032.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105081403_27096.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105083256_33820.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105084018_33428.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105084555_31044.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105085352_8384.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105090103_11732.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105090741_30580.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105094702_8208.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105094822_5344.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105095222_34676.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105102429_14440.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105102957_32256.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105132250_27980.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105134552_23036.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105134833_27740.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105155134_10800.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105161521_10008.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105163557_32584.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105164108_18280.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105164736_30092.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105165432_25964.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105165951_22144.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105170213_21164.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105170502_24204.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105171150_35476.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105171339_8308.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105171449_17512.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105171609_24836.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105171806_26920.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105175747_23920.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231105180311_33948.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231106014541_46896.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231106014801_17600.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231106034153_16064.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231106035254_34908.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231106035655_44376.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231106051140_33808.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231106083959_34592.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107011436_48084.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107020152_13888.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107074755_26308.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107075457_41440.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107095309_15660.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107095643_8264.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107101213_7932.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107101753_15484.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107103302_17740.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107113923_27892.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107115310_34680.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107120037_25396.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107123058_28100.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107123735_21312.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107123924_24796.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107135337_15832.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107140346_7460.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107141542_9756.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107142205_29056.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107143055_4788.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107143226_9240.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107143820_17528.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107150850_7932.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107153543_35756.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107154024_23564.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231107154333_19800.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231108015818_16472.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231108020312_17436.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231108025847_15652.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231108083418_892.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109011856_6692.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109015448_13088.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109021305_12976.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109021646_21916.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109022148_10284.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109022520_2512.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109022934_16040.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109031646_13816.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109032609_23676.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109032632_23880.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109033020_5160.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109033639_25276.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109033901_11140.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109034846_24848.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109113559_22368.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109120956_36676.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109122534_28540.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109125458_11680.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109130520_15928.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231109131027_35700.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231110124822_5292.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231110135028_4572.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231110135734_34676.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231110135950_21804.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231110142432_21224.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112114910_12756.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112120847_11032.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112121139_31768.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112121357_11392.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112121524_32216.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112122921_27772.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112123910_33968.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112124342_1840.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112125616_8896.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112134048_15716.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112134708_29064.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112134841_9960.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112135119_1328.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112135639_29832.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112135730_27000.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112135926_23204.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112140055_35984.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112140550_19080.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112141520_27044.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112142000_26844.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112142451_20024.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112142933_14612.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112151334_14684.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112173348_9808.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112175021_17928.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231112180046_33292.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113012057_31140.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113012810_1756.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113014032_21192.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113022123_21772.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113052817_15040.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113054142_11804.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113054617_32540.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113054848_19584.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113054937_25828.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113055124_37188.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113055938_36496.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113060430_13252.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113062929_32028.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113063608_32216.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113113000_25760.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113120242_14720.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113121653_14200.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113122024_13944.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113122340_10020.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113123040_27548.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113123359_14216.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113123709_11604.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113124649_3348.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113125905_10004.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113133435_30468.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113134650_29756.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113135836_23412.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113141314_12320.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231113143650_15872.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231114012913_17556.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231114031439_14888.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231114032032_34876.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231114032337_3596.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231114033402_36704.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231114033736_15724.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231114034651_27080.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231114054023_13740.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231114054453_32096.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231114055534_35828.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231114064915_35768.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115074431_34440.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115082034_27436.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115083137_2580.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115085132_28540.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115090113_27424.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115092642_13364.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115093557_25004.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115094555_26676.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115094706_35224.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115095157_31040.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115095648_22572.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115103733_17356.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115131827_23948.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115132020_14900.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115132500_11600.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115132708_13436.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115133042_26284.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115133221_34932.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115135930_6664.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115140047_17016.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115140336_27756.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231115144053_12488.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231120063358_24600.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231120065216_38452.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123072925_24312.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123075330_25548.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123080045_32264.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123080416_38264.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123080859_9908.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123081015_22284.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123081315_22600.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123081454_35656.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123122053_23280.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123123658_11940.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123124002_9584.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123124351_18212.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123124442_3644.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123124826_25816.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123125029_15236.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123125228_21956.log delete mode 100644 AMESCoreStudio.Web/logs/stdout_20231123125740_26572.log diff --git a/AMESCoreStudio.Web/Controllers/RPTController.cs b/AMESCoreStudio.Web/Controllers/RPTController.cs index 24c89390..3bf006bb 100644 --- a/AMESCoreStudio.Web/Controllers/RPTController.cs +++ b/AMESCoreStudio.Web/Controllers/RPTController.cs @@ -21,7 +21,6 @@ using AMESCoreStudio.WebApi.Models.AMES; using AMESCoreStudio.WebApi.Enum; using Microsoft.AspNetCore.Mvc.Rendering; using System.Linq; -using DocumentFormat.OpenXml.Office2010.ExcelAc; // For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 @@ -32,13 +31,15 @@ namespace AMESCoreStudio.Web.Controllers private readonly IWebHostEnvironment environment = null; public readonly IRPT _rptApi; public readonly IPCS _pcsApi; + public readonly IESUN _esunApi; - public RPTController(IWebHostEnvironment environment, IRPT rptApi, IPCS pcsApi) + public RPTController(IWebHostEnvironment environment, IRPT rptApi, IPCS pcsApi, IESUN esunApi) { this.environment = environment; System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance); _rptApi = rptApi; _pcsApi = pcsApi; + _esunApi = esunApi; } public async Task RPT001() @@ -87,7 +88,7 @@ namespace AMESCoreStudio.Web.Controllers var eDate = new DateTime(Data.Year, Data.Month, DateTime.DaysInMonth(Data.Year, Data.Month)).ToString("yyyy/MM/dd"); var werkNo = string.Empty; - var werksNoArrsy = new List { "YS31", "YS37", "YS39", "YS03", "YS28", "YS15"}; + var werksNoArrsy = new List { "YS31", "YS37", "YS39", "YS03", "YS28", "YS15" }; if (werksNoArrsy.Count >= werksNoSeq + 1) { werkNo = werksNoArrsy[werksNoSeq]; @@ -1749,6 +1750,763 @@ namespace AMESCoreStudio.Web.Controllers } #endregion + #region RPT005 昶亨工單查詢 + + public async Task RPT005(string id) + { + await GetFactoryUnit(); + return View(); + } + + /// + /// RPT005 Query + /// + /// 生產單位 + /// 工單號碼 + /// + public async Task RPT005Query(string wipNo, string unitNo, string statusNo, int page = 0, int limit = 10) + { + IResultModel result = new ResultModel(); + if (wipNo != null) + { + var esun_wip = await _esunApi.GetWipInfoByRelatedWoNo(wipNo); + if (esun_wip.Any()) + { + wipNo = esun_wip.FirstOrDefault().WipNO; + result = await _esunApi.GetWipInfoSelectParameter(unitno: unitNo + , wipno: wipNo + , page: page + , limit: limit); + } + } + + if (result.Data != null) + { + return Json(new Table() { code = 0, msg = "", data = result.Data, count = result.DataTotal }); + } + return Json(new Table() { count = 0, data = null }); + } + + /// + /// 工單檢視 + /// + /// + /// + public async Task RPT005R(int id) + { + WipDataViewModel model = new WipDataViewModel(); + var q = await _esunApi.GetWipInfo(id); + if (q.Count != 0) + { + model.wipInfo = q.FirstOrDefault(); + model.wipAtt = await _esunApi.GetWipAtt(model.wipInfo.WipNO); + model.wipBarcodes = await _esunApi.GetWipBarcode(model.wipInfo.WipNO); + model.wipBarcode = model.wipBarcodes.FirstOrDefault(); + + model.wipBoard = await _esunApi.GetWipBoard(model.wipInfo.WipNO); + if (model.wipBoard != null) + { + + } + + model.wipSystem = await _esunApi.GetWipSystem(model.wipInfo.WipNO); + if (model.wipSystem != null) + { + if (!string.IsNullOrWhiteSpace(model.wipSystem.Ec)) + { + var Ec_Desc = _esunApi.GetPlmMeterialInfo(model.wipSystem.Ec).InvokeAsync().Result; + model.wipSystem.Ec_Desc = Ec_Desc.Count() == 0 ? "" : Ec_Desc.FirstOrDefault().MeterialDesc; + } + + if (!string.IsNullOrWhiteSpace(model.wipSystem.Fw)) + { + var Fw_Desc = _esunApi.GetPlmMeterialInfo(model.wipSystem.Fw).InvokeAsync().Result; + model.wipSystem.Fw_Desc = Fw_Desc.Count() == 0 ? "" : Fw_Desc.FirstOrDefault().MeterialDesc; + } + + if (!string.IsNullOrWhiteSpace(model.wipSystem.Fw1)) + { + var Fw1_Desc = _esunApi.GetPlmMeterialInfo(model.wipSystem.Fw1).InvokeAsync().Result; + model.wipSystem.Fw1_Desc = Fw1_Desc.Count() == 0 ? "" : Fw1_Desc.FirstOrDefault().MeterialDesc; + } + + if (!string.IsNullOrWhiteSpace(model.wipSystem.Fw2)) + { + var Fw2_Desc = _esunApi.GetPlmMeterialInfo(model.wipSystem.Fw2).InvokeAsync().Result; + model.wipSystem.Fw2_Desc = Fw2_Desc.Count() == 0 ? "" : Fw2_Desc.FirstOrDefault().MeterialDesc; + } + + if (!string.IsNullOrWhiteSpace(model.wipSystem.Bios)) + { + var Bios_Desc = _esunApi.GetPlmMeterialInfo(model.wipSystem.Bios).InvokeAsync().Result; + model.wipSystem.Bios_Desc = Bios_Desc.Count() == 0 ? "" : Bios_Desc.FirstOrDefault().MeterialDesc; + } + + if (!string.IsNullOrWhiteSpace(model.wipSystem.OsVer)) + { + var Os_Desc = _esunApi.GetPlmMeterialInfo(model.wipSystem.OsVer).InvokeAsync().Result; + model.wipSystem.OsVer_Desc = Os_Desc.Count() == 0 ? "" : Os_Desc.FirstOrDefault().MeterialDesc; + } + + if (!string.IsNullOrWhiteSpace(model.wipSystem.PowerMode)) + { + var PowerMode_Desc = _esunApi.GetPlmMeterialInfo(model.wipSystem.PowerMode).InvokeAsync().Result; + model.wipSystem.PowerMode_Desc = PowerMode_Desc.Count() == 0 ? "" : PowerMode_Desc.FirstOrDefault().ProductionMemo; + } + } + + model.wipMACs = await _esunApi.GetWipMAC(model.wipInfo.WipNO); + + model.wipBarcodeOther = await _esunApi.GetWipBarcodeOther(model.wipInfo.WipNO); + + model.WipKps = await _esunApi.GetWipKpByWipNo(model.wipInfo.WipNO); + + // 取料號對應工時 + var standardWorkTimes = await _esunApi.GetStandardWorkTimeByItemNo(model.wipAtt.ItemNO); + + if (standardWorkTimes.Count != 0) + model.itemNoCT1 = standardWorkTimes.Sum(m => m.TotalCT).ToString(); + } + + await WipDataSelectAll(model.wipAtt.WipNO, model.wipAtt.ItemNO, model.wipInfo.UnitNO); + + GetCheckboxDIP(model.wipBoard != null ? model.wipBoard.DipSide : null); + GetCheckboxSMD(model.wipBoard != null ? model.wipBoard.Smd : null); + GetCheckboxSMDSolderMa(model.wipBoard != null ? model.wipBoard.SmdSolderMask : null); + return View(model); + } + + /// + /// 昶亨的 生產單位 + /// + /// + private async Task GetFactoryUnit() + { + var result = await _esunApi.GetFactoryUnits(); + var FactoryUnit = new List(); + for (int i = 0; i < result.Count; i++) + { + FactoryUnit.Add(new SelectListItem(result[i].UnitName, result[i].UnitNo.ToString())); + } + + if (FactoryUnit.Count == 0) + { + FactoryUnit.Add(new SelectListItem("N/A", null)); + } + + ViewBag.FactoryUnitList = FactoryUnit; + } + + /// + /// SMD點紅膠 + /// + /// + private void GetCheckboxSMD(string SelectedValue = null) + { + List values = new List(); + if (SelectedValue == "") + values.Add("F"); //預設 + else if (SelectedValue != null) + values = SelectedValue.Split(',').ToList(); + + var q = Enum.GetValues(typeof(EnumPCS.EnumWipBoardSMDType)).Cast() + .Select(s => new SelectListItem + { + Text = EnumPCS.GetDisplayName(s).ToString(), + Value = s.ToString(), + Selected = values.Where(v => v.Contains(s.ToString())).Count() != 0 + }).ToList(); + + ViewBag.GetCheckboxSMD = q; + } + + /// + /// SMD點防焊膠 + /// + /// + private void GetCheckboxSMDSolderMa(string SelectedValue = null) + { + List values = new List(); + if (SelectedValue == "") + values.Add("F"); //預設 + else if (SelectedValue != null) + values = SelectedValue.Split(',').ToList(); + + var q = Enum.GetValues(typeof(EnumPCS.EnumWipBoardSMDType)).Cast() + .Select(s => new SelectListItem + { + Text = EnumPCS.GetDisplayName(s).ToString(), + Value = s.ToString(), + Selected = values.Where(v => v.Contains(s.ToString())).Count() != 0 + }).ToList(); + + ViewBag.GetCheckboxSMDSolderMa = q; + } + + /// + /// DIP + /// + /// + private void GetCheckboxDIP(string SelectedValue = "") + { + List values = new List(); + if (SelectedValue == "") + values.Add("A"); //預設 + else if (SelectedValue != null) + values = SelectedValue.Split(',').ToList(); + + var q = Enum.GetValues(typeof(EnumPCS.EnumWipBoardDIPType)).Cast() + .Select(s => new SelectListItem + { + Text = EnumPCS.GetDisplayName(s).ToString(), + Value = s.ToString(), + Selected = values.Where(v => v.Contains(s.ToString())).Count() != 0 + }).ToList(); + + ViewBag.GetCheckboxDIP = q; + } + + /// + /// 工單資料畫面 Select All + /// + /// 工單號碼 + /// 工單料號 + /// 生產單位 + /// + public async Task WipDataSelectAll(string WipNo = null, string ItemNo = "X", string UnitNo = "X") + { + // KP Items + await GetItemsList(); + // 產品別 + await GetProductType(); + // 廠別 委外廠 + await GetFactoryInfo(); + // 生產單位 + await GetFactoryUnit(); + // 線別 + await GetLineInfo(); + // 正背面 + await GetMFGType(); + // 工單類型 + await GetProcessTypes(); + // 工程資訊-DMI 燒入 + GetWipSystemDMITypeSelect(); + // 制令序號 + GetWipSEQType(); + // 燒入 + GetBurnType(); + // 零件烘烤 + GetPartsBakeType(); + // 板卡資訊 PCB烘烤 + GetPCBBakeTypeSelect(); + // 板卡資訊 PCB加工 + GetPCBProcessingTypeSelect(); + // 板卡資訊 錫膏 + GetSolderPasteSelect(); + // 工單狀態 標準 重工 + GetWipType(); + // 工程資訊 軟體料號Type + GetWipSystemTypeSelect(); + // 工程資訊 Power Model + GetWipSystemPMTypeSelect(); + // 燒機溫度 + GetWipBITemperatuerSelect(); + // 燒機軟體 + GetWipBI_OSSelect(); + + } + + #region 下拉選單 + /// + /// 產品別 + /// + /// + private async Task GetProductType() + { + + var result = await _pcsApi.GetProductTypes(); + + var ProductTypes = new List(); + for (int i = 0; i < result.Count; i++) + { + ProductTypes.Add(new SelectListItem(result[i].ProductTypeNO + "-" + result[i].ProductTypeName, result[i].ProductTypeID.ToString())); + } + + if (ProductTypes.Count == 0) + { + ProductTypes.Add(new SelectListItem("N/A", null)); + } + + ViewBag.ProductTypesList = ProductTypes; + } + + /// + /// 線別 + /// + /// 生產製程 + /// + private async Task GetLineInfo(string UnitNo = null) + { + var result = await _pcsApi.GetLineInfo(); + result = result.Where(w => w.StatusNo == "A").OrderBy(o => o.LineID).ToList(); + + // 有生產製程 多判斷生產製程 + if (!string.IsNullOrWhiteSpace(UnitNo)) + result = result.Where(w => w.UnitNo == UnitNo).ToList(); + + var LineInfo = new List(); + for (int i = 0; i < result.Count; i++) + { + LineInfo.Add(new SelectListItem(result[i].LineID + "-" + result[i].LineDesc, result[i].LineID.ToString())); + } + + if (LineInfo.Count == 0) + { + LineInfo.Add(new SelectListItem("N/A", null)); + } + + ViewBag.LineInfoList = LineInfo; + } + + /// + /// 廠別/委外廠 + /// + /// + private async Task GetFactoryInfo() + { + var result = await _pcsApi.GetFactoryInfo(); + result = result.Where(w => w.StatusNo == "A").OrderBy(o => o.FactoryID).ToList(); + var FactoryInfo = new List(); + for (int i = 0; i < result.Count; i++) + { + FactoryInfo.Add(new SelectListItem(result[i].FactoryNo + "-" + result[i].FactoryNameCh, result[i].FactoryID.ToString())); + } + + if (FactoryInfo.Count == 0) + { + FactoryInfo.Add(new SelectListItem("N/A", null)); + } + + ViewBag.FactoryInfoList = FactoryInfo; + } + + /// + /// 組件資料 + /// + /// + private async Task GetItems() + { + var result = await _pcsApi.GetItems(); + + // 只有狀態是啟用的 + result = result.Where(w => w.StatusNo == "A").OrderBy(o => o.ItemName).ToList(); + + var ItemsList = new List(); + ItemsList.Add(new SelectListItem("請選擇", "")); + for (int i = 0; i < result.Count; i++) + { + ItemsList.Add(new SelectListItem(result[i].ItemName, result[i].ItemNo.ToString())); + } + ViewBag.ItemsList = ItemsList; + } + + /// + /// 正背面 + /// + /// + private async Task GetMFGType() + { + var result = await _pcsApi.GetMFGTypes(); + var MFGType = new List(); + for (int i = 0; i < result.Count; i++) + { + MFGType.Add(new SelectListItem(result[i].MFGTypeName, result[i].MFGTypeNO.ToString())); + } + + if (MFGType.Count == 0) + { + MFGType.Add(new SelectListItem("N/A", null)); + } + + ViewBag.MFGTypeList = MFGType; + } + + /// + /// 工單性質 + /// + /// + private async Task GetProcessTypes() + { + var result = await _pcsApi.GetProcessTypes(); + + var ProcessType = new List(); + for (int i = 0; i < result.Count; i++) + { + ProcessType.Add(new SelectListItem(result[i].ProcessTypeName, result[i].ProcessTypeNO.ToString())); + } + + if (ProcessType.Count == 0) + { + ProcessType.Add(new SelectListItem("N/A", null)); + } + + ViewBag.ProcessTypeList = ProcessType; + } + + /// + /// 制令序號 + /// + /// + private void GetWipSEQType() + { + var WipSEQType = new List(); + for (int i = 1; i <= 10; i++) + { + WipSEQType.Add(new SelectListItem(i.ToString(), i.ToString())); + } + ViewBag.WipSEQTypeList = WipSEQType; + } + + + /// + /// 工單狀態 + /// + /// + private void GetWipType() + { + var WipType = new List(){ + new SelectListItem() { + Text = "S:標準工單", + Value = "S", + }, + new SelectListItem + { + Text = "R:重工工單", + Value = "R", + }, + new SelectListItem() { + Text = "N:無序號工單", + Value = "N", + } + }; + + ViewBag.GetWipTypeList = WipType; + } + + /// + /// 燒錄 + /// + private void GetBurnType() + { + var BurnType = new List(){ + new SelectListItem() { + Text = "燒錄", + Value = "Y", + }, + new SelectListItem + { + Text = "不需燒錄", + Value = "N", + } + }; + + ViewBag.GetBurnTypeList = BurnType; + } + + /// + /// 零件烘烤 + /// + private void GetPartsBakeType() + { + var PartsBakeType = new List(){ + new SelectListItem + { + Text = "其他", + Value = "999" + }, + new SelectListItem + { + Text = "125℃", + Value = "125", + Selected = true + }, + new SelectListItem + { + Text = "120℃", + Value = "120", + }, + new SelectListItem + { + Text = "80℃", + Value = "80", + }, + new SelectListItem + { + Text = "60℃", + Value = "60", + }, + new SelectListItem + { + Text = "45℃", + Value = "45", + }, + new SelectListItem + { + Text = "N/A", + Value = "0", + } + }; + + ViewBag.GetPartsBakeTypeList = PartsBakeType; + } + + /// + /// 工單資訊 板卡資訊 PCB烘烤 + /// + /// + private void GetPCBBakeTypeSelect(string SelectedValue = null) + { + List values = new List(); + if (SelectedValue != null) + { + values = SelectedValue.Split(',').ToList(); + } + var q = Enum.GetValues(typeof(EnumPCS.EnumWipBoardPCBBakeType)).Cast() + .Select(s => new SelectListItem + { + Text = EnumPCS.GetDisplayName(s).ToString(), + Value = s.ToString() + }).ToList(); + + ViewBag.GetPCBBakeTypeSelect = q; + } + + /// + /// 工單資訊 板卡資訊 PCB加工 + /// + /// + private void GetPCBProcessingTypeSelect(string SelectedValue = null) + { + List values = new List(); + if (SelectedValue != null) + { + values = SelectedValue.Split(',').ToList(); + } + var q = Enum.GetValues(typeof(EnumPCS.EnumWipBoardPCBProcessingType)).Cast() + .Select(s => new SelectListItem + { + Text = EnumPCS.GetDisplayName(s).ToString(), + Value = s.ToString() + }).ToList(); + + ViewBag.GetPCBProcessingTypeSelect = q; + } + + /// + /// 工單資訊 板卡資訊 錫膏 + /// + /// + private void GetSolderPasteSelect(string SelectedValue = null) + { + List values = new List(); + if (SelectedValue != null) + { + values = SelectedValue.Split(',').ToList(); + } + var q = Enum.GetValues(typeof(EnumPCS.EnumWipBoardSolderPasteType)).Cast() + .Select(s => new SelectListItem + { + Text = EnumPCS.GetDisplayName(s).ToString(), + Value = s.ToString() + }).ToList(); + + ViewBag.GetSolderPasteSelect = q; + } + + + /// + /// 工單資訊 系統工程資訊 PMType + /// + /// + private void GetWipSystemPMTypeSelect(string SelectedValue = null) + { + List values = new List(); + if (SelectedValue != null) + { + values = SelectedValue.Split(',').ToList(); + } + var q = Enum.GetValues(typeof(EnumPCS.EnumWipSystemPMType)).Cast() + .Select(s => new SelectListItem + { + Text = EnumPCS.GetDisplayName(s).ToString(), + Value = Convert.ToInt32(Enum.Parse(typeof(EnumPCS.EnumWipSystemPMType), s.ToString())).ToString() + }).ToList(); + + ViewBag.GetWipSystemPMTypeSelect = q; + } + + /// + /// 工單資訊 系統工程資訊 Type + /// + /// + private void GetWipSystemTypeSelect(string SelectedValue = null) + { + List values = new List(); + if (SelectedValue != null) + { + values = SelectedValue.Split(',').ToList(); + } + var q = Enum.GetValues(typeof(EnumPCS.EnumWipSystemType)).Cast() + .Select(s => new SelectListItem + { + Text = EnumPCS.GetDisplayName(s).ToString(), + Value = Convert.ToInt32(Enum.Parse(typeof(EnumPCS.EnumWipSystemType), s.ToString())).ToString() + }).ToList(); + + ViewBag.GetWipSystemTypeSelect = q; + } + + /// + /// 工單資訊 系統工程資訊 DMI燒入 Type + /// + /// + private void GetWipSystemDMITypeSelect(string SelectedValue = null) + { + List values = new List(); + if (SelectedValue != null) + { + values = SelectedValue.Split(',').ToList(); + } + var q = Enum.GetValues(typeof(EnumPCS.EnumWipSystemDMIBIType)).Cast() + .Select(s => new SelectListItem + { + Text = EnumPCS.GetDisplayName(s).ToString(), + Value = Convert.ToInt32(Enum.Parse(typeof(EnumPCS.EnumWipSystemDMIBIType), s.ToString())).ToString() + }).ToList(); + + ViewBag.GetWipSystemDMITypeSelect = q; + } + + /// + /// 工單資訊 燒機溫度 + /// + /// + private void GetWipBITemperatuerSelect(string SelectedValue = null) + { + List values = new List(); + if (SelectedValue != null) + { + values = SelectedValue.Split(',').ToList(); + } + var q = Enum.GetValues(typeof(EnumPCS.EnumWipBITemperatuer)).Cast() + .Select(s => new SelectListItem + { + Text = EnumPCS.GetDisplayName(s).ToString(), + Value = EnumPCS.GetDisplayName(s).ToString() + //Value = s.ToString() + }).ToList(); + + ViewBag.GetWipBITemperatuerSelect = q; + } + + /// + /// 工單資訊 燒機軟體 + /// + /// + private void GetWipBI_OSSelect(string SelectedValue = null) + { + List values = new List(); + if (SelectedValue != null) + { + values = SelectedValue.Split(',').ToList(); + } + var q = Enum.GetValues(typeof(EnumPCS.EnumWipBI_OS)).Cast() + .Select(s => new SelectListItem + { + Text = EnumPCS.GetDisplayName(s).ToString(), + Value = EnumPCS.GetDisplayName(s).ToString() + //Value = s.ToString() + }).ToList(); + + ViewBag.GetWipBI_OSSelect = q; + } + + + /// + /// 工單鎖定-鎖定類型 + /// + private void GetLockType() + { + var LockType = new List(){ + new SelectListItem() { + Text = "WIP", + Value = "WIP", + }, + new SelectListItem + { + Text = "BAR", + Value = "BAR", + } + }; + + ViewBag.GetLockTypeList = LockType; + } + + /// + /// 工單鎖定-鎖定原因類別 + /// + private void GetLockReasonType() + { + var LockReasonType = new List(){ + new SelectListItem() { + Text = "3C認證工單", + Value = "0", + }, + new SelectListItem + { + Text = "驗證工單", + Value = "1", + }, + new SelectListItem + { + Text = "維修換料待分析", + Value = "3", + } + }; + + //TempData["GetLockReasonTypeList"] = LockReasonType; + ViewBag.GetLockReasonTypeList = LockReasonType; + } + + /// + /// KP Items + /// + /// + private async Task GetItemsList() + { + var result = await _esunApi.GetItems(); + + // 只有狀態是啟用的 + result = result.Where(w => w.StatusNo == "A").OrderBy(o => o.ItemName).ToList(); + + var Items = new List(); + for (int i = 0; i < result.Count; i++) + { + Items.Add(new SelectListItem(result[i].ItemName, result[i].ItemNo.ToString())); + } + + if (result.Count == 0) + { + Items.Add(new SelectListItem("N/A", null)); + } + + ViewBag.ItemsList = Items; + } + + #endregion + + #endregion + /// /// 登入UserID /// diff --git a/AMESCoreStudio.Web/HttpApis/AMES/IESUN.cs b/AMESCoreStudio.Web/HttpApis/AMES/IESUN.cs index ec2465c3..46380ac5 100644 --- a/AMESCoreStudio.Web/HttpApis/AMES/IESUN.cs +++ b/AMESCoreStudio.Web/HttpApis/AMES/IESUN.cs @@ -10,6 +10,9 @@ using AMESCoreStudio.CommonTools.Result; namespace AMESCoreStudio.Web { + /// + /// 昶亨的API + /// [JsonReturn] public interface IESUN:IHttpApi { @@ -68,5 +71,99 @@ namespace AMESCoreStudio.Web /// [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/BarcodeStation/GetWipStationBarcode4QRS009")] ITask> GetWipStationBarcode4QRS009(int wipID, int stationID, string ruleStatus, int page, int limit); + + /// + /// 查詢工單基本資料 + /// + /// 生產單位 + /// 工單號碼 + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/WipInfos/GetWipInfoSelectParameter")] + ITask> GetWipInfoSelectParameter(string unitno = null, string wipno = null , + int page = 0, int limit = 10, string statusNo = null); + + /// + /// 查詢工單基本資料-WipID + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/WipInfos/{id}")] + ITask> GetWipInfo(int id); + + /// + /// 查詢工單基本資料-WipNo + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/WipAtts/{id}")] + ITask GetWipAtt(string id); + + /// + /// 查詢工單號碼 對應 WipKp + /// + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/WipKps/ByWipNo/{id}")] + ITask> GetWipKpByWipNo(string id); + + /// + /// 工單對應MAC + /// + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/WipMAC/{id}")] + ITask> GetWipMAC(string id); + + /// + /// 料號對應工時 + /// + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/StandardWorkTimes/ByItemNo/{id}")] + ITask> GetStandardWorkTimeByItemNo(string id); + + /// + /// 查詢工單條碼資料-WipNo + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/WipBarcode/{id}")] + ITask> GetWipBarcode(string id); + + /// + /// 獲取組件類別資料 + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/Items")] + ITask> GetItems(int page = 0, int limit = 10); + + /// + /// WipBoard 工單基本資料-板卡資訊 + /// + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/WipBoard/{id}")] + ITask GetWipBoard(string id); + + /// + /// WipSystem 工單基本資料-系統組裝資訊 + /// + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/WipSystem/{id}")] + ITask GetWipSystem(string id); + + /// + /// 查詢PLM轉入料號說明 + /// + /// PLM料號 + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/PlmMeterialInfoe/{id}")] + ITask> GetPlmMeterialInfo(string id); + + /// + /// WipBarcodeOthers 工單出貨條碼區間設定檔 PCS017 + /// + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/WipBarcodeOther/WipNo/{id}")] + ITask GetWipBarcodeOther(string id); } } diff --git a/AMESCoreStudio.Web/Views/RPT/RPT005.cshtml b/AMESCoreStudio.Web/Views/RPT/RPT005.cshtml new file mode 100644 index 00000000..67049f22 --- /dev/null +++ b/AMESCoreStudio.Web/Views/RPT/RPT005.cshtml @@ -0,0 +1,193 @@ +@{ + ViewData["Title"] = "昶亨工單資料查詢"; + Layout = "~/Views/Shared/_AMESLayout.cshtml"; +} +@using Microsoft.AspNetCore.Mvc.Localization +@inject IHtmlLocalizer sharedLocalizer + +
+
+
+
+
@ViewBag.Title
+
+
+
+
+
+
+
+
+
+ +
+ +
+
+
+
+
+ +
+ + +
+
+
+
+
+ +
+
+
+
+
+
+
+
+ +@section Scripts{ + + +} \ No newline at end of file diff --git a/AMESCoreStudio.Web/Views/RPT/RPT005R.cshtml b/AMESCoreStudio.Web/Views/RPT/RPT005R.cshtml new file mode 100644 index 00000000..31e78816 --- /dev/null +++ b/AMESCoreStudio.Web/Views/RPT/RPT005R.cshtml @@ -0,0 +1,891 @@ +@model AMESCoreStudio.Web.ViewModels.PCS.WipDataViewModel + + +@{ + ViewData["Title"] = "PCS001C"; + Layout = "~/Views/Shared/_AMESLayout.cshtml"; +} + + + +
+
+
+
+
+ +
+ +
+
+ +
+ + +
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
+ +
+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ +
+
+ +
+
+ +
+ + +
+ +
+ + +
+ +
+ +
+
+
+ +
+
+ +
+ +
+ + +
+ + +
+ + + + +
+ + +
+ + +
+ +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ + + +
+ +
+
    +
  • 工單屬性
  • +
  • 序號編碼
  • +
  • Keypart組合
  • +
  • 板卡-工程資訊
  • +
  • 工程資訊
  • +
+
+ @* 工單屬性sheet *@ +
+
+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+ +
+
+ +
+ + +
+ +
+ + +
+
+
+ +
+
+ +
+ +
+ +
+ +
+
+
+ +
+
+ +
+ + +
+ +
+ + +
+
+
+ +
+ + @* 序號編碼sheet *@ +
+
+
+ + + + + + + + + + + @foreach (var index in Model.wipBarcodes) + { + + + + + } + +
+ 起始生產序號 + + 結束生產序號 +
+ @index.StartNO + + @index.EndNO +
+
+
+ +
+
+ +
+ +
+
-
+
+ +
+
+
+ +
+
+ + + + + + + + + + + @foreach (var index in Model.wipMACs) + { + + + + + } + +
+ MAC區間起 + + MAC區間迄 +
+ @index.Title@index.StartNO + + @index.Title@index.EndNO +
+
+
+ +
+ +
+ +
+
+
+ + @* Keypart組合sheet *@ +
+ + @{ + int i = 0; + } + + + + + + + + + + + + + @foreach (var index in Model.WipKps) + { + + + + + + + + + i++; + } + +
+ KP料號名稱 + + KP料號NO + + 順序 + + 前置碼 + + 長度 + + 生產單位代號 + + +
+ + @index.KpName + + + + + @index.KpSeq + + + @index.Title + + + @index.Length + + + @index.UnitNoName +
+
+ + @* 板卡-工程資訊sheet *@ +
+
+
+ +
+ +
+ + +
+ +
+
+
+ +
+
+ +
+ +
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ + + + +
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ + +
+ +
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+ +
+
其他溫度
+ +
+ +
+
小時
+
+ +
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+
+ +
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+ +
+
+ +
+ +
+
小時
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ + +
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ + +
+
+
+ +
+ +
+ +
+
+
+ + @* 系統-工程資訊sheet *@ +
+
+
+ +
+ +
+ + +
+ +
+
+ @if (!string.IsNullOrWhiteSpace(Model.itemNoCT1)) + { + 有維護標準工時 + } + else + { + **無維護標準工時** + } +
+
+
+ +
+
+ +
+ +
+
+ +
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+ +
+
小時
+ +
+ +
+ +
+ +
+
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+ +
+ +
+
+
+ +
+
+ +
+ +
+
+ +
+
+ +
+
+
+ +
+
+ +
+ +
+
+ +
+
+ +
+
+
+ +
+
+ +
+ +
+
+ +
+
+ +
+
+
+ +
+
+ +
+ +
+
+ +
+
+ +
+
+
+ +
+
+ +
+ +
+
+ +
+
+ +
+
+
+ +
+
+ +
+ +
+ +
+ +
+
+
+ +
+
+ +
+ + +
+
+
+ +
+
+ +
+ +
+ +
+ +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+
+
+
+
+
+
+@section Scripts { + + +} + diff --git a/AMESCoreStudio.Web/logs/stdout_20230916074021_12584.log b/AMESCoreStudio.Web/logs/stdout_20230916074021_12584.log deleted file mode 100644 index d0cd25fe..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20230916074021_12584.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行Login出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.LoginController.Index(LoginViewModel vModel) in D:\安勤\AMESCoreStudio.Web\Controllers\LoginController.cs:line 66 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope s \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20230916080205_9584.log b/AMESCoreStudio.Web/logs/stdout_20230916080205_9584.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20230916081621_20992.log b/AMESCoreStudio.Web/logs/stdout_20230916081621_20992.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20230919144118_17268.log b/AMESCoreStudio.Web/logs/stdout_20230919144118_17268.log deleted file mode 100644 index e4333d05..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20230919144118_17268.log +++ /dev/null @@ -1,115 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行Login出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.LoginController.Index(LoginViewModel vModel) in D:\安勤\AMESCoreStudio.Web\Controllers\LoginController.cs:line 66 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行Login出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.LoginController.Index(LoginViewModel vModel) in D:\安勤\AMESCoreStudio.Web\Controllers\LoginController.cs:line 66 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行Login出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Ht \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20230919151214_17724.log b/AMESCoreStudio.Web/logs/stdout_20230919151214_17724.log deleted file mode 100644 index d0cd25fe..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20230919151214_17724.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行Login出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.LoginController.Index(LoginViewModel vModel) in D:\安勤\AMESCoreStudio.Web\Controllers\LoginController.cs:line 66 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope s \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20230919151353_20868.log b/AMESCoreStudio.Web/logs/stdout_20230919151353_20868.log deleted file mode 100644 index d0cd25fe..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20230919151353_20868.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行Login出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.LoginController.Index(LoginViewModel vModel) in D:\安勤\AMESCoreStudio.Web\Controllers\LoginController.cs:line 66 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope s \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20230919151422_7216.log b/AMESCoreStudio.Web/logs/stdout_20230919151422_7216.log deleted file mode 100644 index b6441a8b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20230919151422_7216.log +++ /dev/null @@ -1,80 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行Login出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.LoginController.Index(LoginViewModel vModel) in D:\安勤\AMESCoreStudio.Web\Controllers\LoginController.cs:line 66 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行Login出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20230919153807_20944.log b/AMESCoreStudio.Web/logs/stdout_20230919153807_20944.log deleted file mode 100644 index ce892158..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20230919153807_20944.log +++ /dev/null @@ -1,267 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 11324.8036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 11348.6858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 193.2166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 205.474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.5626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 150.8862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 383.1945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 389.2145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 248.0742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 255.7114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 228.2298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 235.4197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 216.5513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 224.0717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 2197.491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 2205.7587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=3&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=3&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 1628.4047ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 1646.1484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=5&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=5&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 1097.2074ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 1110.7275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=103831101C01&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=103831101C01&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 454.1178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 464.2538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/31104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/31104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 931.9233ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 940.4856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAtts/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAtts/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 93.1585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 100.2849ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBarcode/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBarcode/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 133.1401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 140.7774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/WipNo/103831101C01?flowRuleIDNew=-1&flowRuleIDOld=0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/WipNo/103831101C01?flowRuleIDNew=-1&flowRuleIDOld=0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 151.2717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 194.7385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBoard/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBoard/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 114.476ms - NoContent -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 128.9594ms - NoContent -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipSystem/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipSystem/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 86.9673ms - NoContent -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 120.6629ms - NoContent -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipMAC/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipMAC/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 97.2013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 104.0908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipLabel/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipLabel/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 96.8006ms - NoContent -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 106.2115ms - NoContent -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBarcodeOther/WipNos/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBarcodeOther/WipNos/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 150.722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 158.7126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MaterialOutfit/ByItemNO/AVV0023A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MaterialOutfit/ByItemNO/AVV0023A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 237.914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 244.4287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipKps/ByWipNo/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipKps/ByWipNo/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 142.3069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 154.2683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipOutfit/ByWipNo/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipOutfit/ByWipNo/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 191.0384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 208.6827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipSop/ByWipNo/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipSop/ByWipNo/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 135.498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 142.7303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfoBlob/ByWipNo/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfoBlob/ByWipNo/103831101C01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 111.7711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 119.5251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/ByItemNo/AVV0023A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/ByItemNo/AVV0023A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 171.7353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 178.1552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Items?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Items?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 141.0646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 149.0284ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProductTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProductTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 132.8992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 140.2274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 185.2503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 207.6731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.5878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.2953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 871.0908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 879.6471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MFGTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MFGTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 135.2091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 145.8611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMES \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20230920123754_22404.log b/AMESCoreStudio.Web/logs/stdout_20230920123754_22404.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231001071850_21240.log b/AMESCoreStudio.Web/logs/stdout_20231001071850_21240.log deleted file mode 100644 index ff4629cb..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001071850_21240.log +++ /dev/null @@ -1,330 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 11667.3125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 11689.9879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 179.8151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 188.4977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 186.7688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 196.5118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 359.7949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 372.1879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 302.9192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 314.5403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 332.9327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 346.3827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 190.337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 199.5901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 2632.1856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 2642.2504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 192.1565ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 195.1483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 1371.7885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 1381.7413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/31079 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/31079 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 624.9421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 629.9908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAtts/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAtts/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 63.5947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 71.0645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBarcode/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBarcode/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 134.2093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 162.7025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/WipNo/104287101A01?flowRuleIDNew=0&flowRuleIDOld=0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/WipNo/104287101A01?flowRuleIDNew=0&flowRuleIDOld=0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 164.6957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 173.6531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBoard/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBoard/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 179.5268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 208.057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipSystem/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipSystem/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 216.0323ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 221.4038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipMAC/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipMAC/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 66.5831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 74.2911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipLabel/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipLabel/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 133.8033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 142.7617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBarcodeOther/WipNos/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBarcodeOther/WipNos/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 123.8974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 130.244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MaterialOutfit/ByItemNO/HTM0461 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MaterialOutfit/ByItemNO/HTM0461 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 213.5647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 221.2002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipKps/ByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipKps/ByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 94.2425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 104.631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipOutfit/ByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipOutfit/ByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 117.0809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 126.365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipSop/ByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipSop/ByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 97.9507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 106.4363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfoBlob/ByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfoBlob/ByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 91.7586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 99.3471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/ByItemNo/HTM0461 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/ByItemNo/HTM0461 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 103.7175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 110.3421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Items?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Items?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 132.4883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 138.9749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProductTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProductTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 107.4237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 113.9185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 49.1065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 58.6085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.6699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.9985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 245.2604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 251.8681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 473.1536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 479.0602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MFGTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MFGTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 78.0815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 86.8634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 82.9703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 88.0372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MaterialFlows/ByWip/HTM0461/S -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MaterialFlows/ByWip/HTM0461/S -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 123.9048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 130.4165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 147.7274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 156.4898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.8223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.6322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/WipInfoByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/WipInfoByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 194.0829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 200.0398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/WipInfoByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/WipInfoByWipNo/104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 200.777ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 210.8237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.7033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 86.9398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 169.1728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 174.3417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionForms -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP requ \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001073042_22276.log b/AMESCoreStudio.Web/logs/stdout_20231001073042_22276.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231001073211_26316.log b/AMESCoreStudio.Web/logs/stdout_20231001073211_26316.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231001073430_24404.log b/AMESCoreStudio.Web/logs/stdout_20231001073430_24404.log deleted file mode 100644 index c222acbc..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001073430_24404.log +++ /dev/null @@ -1,308 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3116.4898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3124.707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 87.2193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 90.4396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 67.7488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 70.6868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 155.7353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.2661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 170.445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 173.4272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 185.8735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 188.1931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 140.723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 143.6563ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 76.448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 81.9084ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 97.535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 100.383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 103.4004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 107.0854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 79.2333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 84.3371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 68.1616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 72.9891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 153.0794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 155.6851ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 86.5914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 89.9662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 323.7318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 328.6121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1003&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1003&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 111.7502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 115.336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 103.4205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 106.6174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 174.495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 180.3858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 168.3454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 174.963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 162.5335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 171.6154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 51.2094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 56.2657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1210 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1210 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.1922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 90.799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 94.4246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 99.3633ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 95.107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 101.2659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 92.7507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 98.5057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.1751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.7ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/ProgramInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/ProgramInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 320.462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 327.5568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 171.0179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 174.6276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 89.7422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 96.2382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 148.9138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 92.0246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 97.3309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 81.563ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.9641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 103.1923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 108.43ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 87.3777ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 92.4075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 98.4402ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 106.7134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 67.0559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 179.984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 252.0631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 257.2517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001074043_20604.log b/AMESCoreStudio.Web/logs/stdout_20231001074043_20604.log deleted file mode 100644 index f56eb83c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001074043_20604.log +++ /dev/null @@ -1,323 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3071.8163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3079.2124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 91.3941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 94.1265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 76.8238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 79.4747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 145.1585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.3663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 187.866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 190.5455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 191.5182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 194.836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 111.5422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 115.5115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 99.4962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 102.8787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 121.3183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 124.4806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 130.4835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 133.4155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 305.0716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 309.8383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 108.8848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 112.6831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 113.7643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 118.2405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 59.7692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 62.7476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 70.8722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 73.4629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 123.9173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 128.1122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 85.2442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 88.8892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.9172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 150.428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 148.9139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 152.1884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 498.1874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 501.1696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 468.6188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 471.6789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 511.2036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 514.2147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 204.9646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 209.0216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 622.0983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 624.5834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/Role/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/Role/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 475.0093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 479.2321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/Role/1000?page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/Role/1000?page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 405.9133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 409.4849ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 99.4568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 102.423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 52.1776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 56.0701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 105.6339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 109.0659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 463.0838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 466.713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 89.3799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 92.3978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 96.5647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 98.9958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/RolePrograms -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/RolePrograms -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 261.139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 264.6973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 467.1659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 473.1545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 151.5445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 155.2441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 40.5691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 44.5487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 41.3892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 47.8671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 128.9333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 136.0706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 129.542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 136.0013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001074403_23884.log b/AMESCoreStudio.Web/logs/stdout_20231001074403_23884.log deleted file mode 100644 index b80feaef..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001074403_23884.log +++ /dev/null @@ -1,303 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 220.1154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 229.3279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 39.2486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 42.1517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 40.3328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 43.7771ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 104.9572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 107.8236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 108.0001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 111.1716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.2347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.4467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 87.7971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 90.4942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 398.1146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 402.58ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 64.6992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 67.8192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 363.8125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 367.7785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 76.1751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 80.821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 65.6571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 68.1156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 68.7913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 73.5561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 85.5385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 92.8009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 83.9388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 88.6767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.9839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 89.6309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 96.7926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 97.8069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 95.6143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 100.0304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 76.4667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 80.0311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 39.4156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 42.8553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 46.2548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 49.8982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=2&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 128.3233ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 131.669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 49.071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 53.0065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1265 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1265 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 44.7316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 48.8986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.0009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 88.0778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.8492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.4613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 83.3269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 91.9492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.6544ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.7417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 195.3672ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 200.9448ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.0885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.4376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 73.4691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.1001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.6113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 98.5232ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 104.3275ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionConte \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001075556_6776.log b/AMESCoreStudio.Web/logs/stdout_20231001075556_6776.log deleted file mode 100644 index 4a925c9f..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001075556_6776.log +++ /dev/null @@ -1,184 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 146.6444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 155.1423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 140.9718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 148.629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 35.2397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 40.665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 39.4889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 46.2397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 94.7642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 101.9719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 110.9651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 117.1314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 128.8246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 131.6859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 75.4911ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 79.8914ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 148.8918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 155.4004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 52.7541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 58.0438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 56.325ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 64.0889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 89.617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 97.4744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.4258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 123.3173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 142.826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 149.5775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 82.0856ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 84.9461ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/W \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001080546_24496.log b/AMESCoreStudio.Web/logs/stdout_20231001080546_24496.log deleted file mode 100644 index 4a339f93..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001080546_24496.log +++ /dev/null @@ -1,467 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 323.1989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 330.6412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 42.8993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 48.6584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.5191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.4601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 112.7935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 116.9499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 113.5259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 119.029ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 132.6328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 136.1644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 159.7421ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 162.787ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 145.8679ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 149.0639ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetWipAlarm2出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetWipAlarm2出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetWipAlarm2出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/ -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.AggregateException: One or more errors occurred. (?行GetBarcodeInfoesByNo出?HttpRequestException异常) - ---> WebApiClient.HttpApiException: ?行GetBarcodeInfoesByNo出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions) - at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification) - at System.Threading.Tasks.Task`1.get_Result() - at AMESCoreStudio.Web.Controllers.PCSController.PCS009R(PCS009ViewModel model) in D:\安勤\AMESCoreStudio.Web\Controllers\PCSController.cs:line 4527 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/910002900300271 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/910002900300271 -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.AggregateException: One or more errors occurred. (?行GetBarcodeInfoesByNo出?HttpRequestException异常) - ---> WebApiClient.HttpApiException: ?行GetBarcodeInfoesByNo出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions) - at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification) - at System.Threading.Tasks.Task`1.get_Result() - at AMESCoreStudio.Web.Controllers.PCSController.PCS009R(PCS009ViewModel model) in D:\安勤\AMESCoreStudio.Web\Controllers\PCSController.cs:line 4527 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=dsadsa&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=dsadsa&page=1&limit=10 -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetWipAlarm2出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/910002900300271 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/910002900300271 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 7931.6429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 7939.6213ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeStation/BarCodeID/4085 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeStation/BarCodeID/4085 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 423.2715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 427.9718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/31251 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/31251 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 252.8137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 260.1868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/ByBarCodeIDPCS009?barcodeID=4085 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/ByBarCodeIDPCS009?barcodeID=4085 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 113.8219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 120.0883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeOutfit/ByBarcodeNo/910002900300271 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeOutfit/ByBarcodeNo/910002900300271 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 217.0659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 226.5724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeItemChanges/ByBarCodeIDPCS009/4085 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeItemChanges/ByBarCodeIDPCS009/4085 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS. \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001082958_27400.log b/AMESCoreStudio.Web/logs/stdout_20231001082958_27400.log deleted file mode 100644 index d2fcd6df..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001082958_27400.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 803.262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 814.914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 78.2703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 83.3517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 78.4967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 82.7264ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 223.0814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 226.7266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 208.0971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 212.328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 243.7725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 247.5123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUni \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001083205_12908.log b/AMESCoreStudio.Web/logs/stdout_20231001083205_12908.log deleted file mode 100644 index 089f975d..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001083205_12908.log +++ /dev/null @@ -1,140 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 336.5202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 358.3021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 88.6076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 96.0591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 176.3988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 210.8945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 232.5869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 238.7263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 209.7194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 217.2733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 948.6465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 954.0252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 109.5587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 141.4527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=104309901A01&itemNO=&modelNO=&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=104309901A01&itemNO=&modelNO=&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 145.7406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 157.9381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=&itemNO=&modelNO=104309901A01&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=&itemNO=&modelNO=104309901A01&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 106.4436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 117.5716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=104309901A01&itemNO=&modelNO=&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=104309901A01&itemNO=&modelNO=&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 116.1993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 121.8579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=&itemNO=&modelNO=104309901A01&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=&itemNO=&modelNO=104309901A01&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 101.7764ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 108.5011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=104309901A01&itemNO=&modelNO=&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=104309901A01&itemNO=&modelNO=&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 142.2359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 196.7625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=&itemNO=&modelNO=104309901A01&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionResultMasters/GetIPQCHeaderData4QRS015?wipNO=&itemNO=&modelNO=104309901A01&dateStart=2023-09-24&dateEnd=2023-10-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 110.9428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 119.6513ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AMESCoreStudio.Web.Controllers.QRSController.QRS022(String id) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10690 - at lambda_method(Closure , Object , Object[] ) - at Microsoft.Extensions.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters) - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeActionMethodAsync() - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeNextActionFilterAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET ht \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001092336_20860.log b/AMESCoreStudio.Web/logs/stdout_20231001092336_20860.log deleted file mode 100644 index 8ea944d3..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001092336_20860.log +++ /dev/null @@ -1,167 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 213.5113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 224.3627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 47.7471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 53.0262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 49.1588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 54.1198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 106.0144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 110.9477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 123.6129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.6937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 145.1278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 149.2671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.3439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.4668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 711.8952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 718.6159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 1385.1552ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 1389.3094ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 166.0864ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 170.9936ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 114.3101ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 118.2149ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001093059_7608.log b/AMESCoreStudio.Web/logs/stdout_20231001093059_7608.log deleted file mode 100644 index 0313b920..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001093059_7608.log +++ /dev/null @@ -1,98 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 236.9455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 263.7517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 49.5578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 57.9894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 157.8704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 167.3552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 43.9746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 54.4761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 51.3572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 58.9526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 122.1803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 131.5552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.0182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.4016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.5905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 156.612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 130.913ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 138.9937ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001093734_22004.log b/AMESCoreStudio.Web/logs/stdout_20231001093734_22004.log deleted file mode 100644 index 3c8fa7cf..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001093734_22004.log +++ /dev/null @@ -1,160 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 241.5385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 266.0589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 180.378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 191.2909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 53.666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 62.2756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 54.1461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 66.2304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.2728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 126.544ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.9592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 124.1432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 148.6092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 159.7415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 68.7305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.4042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ClassInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ClassInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 363.575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 368.6861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=T&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=T&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 249.1567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 252.3049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVC0103%2C1006 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVC0103%2C1006 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 101.8944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 109.0347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1004?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1004?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 302.0595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 307.9024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1010 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1010 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 97.3692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 102.0094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1012 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1012 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 81.6999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 88.7898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 81.5993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 87.3136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 69.444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 72.1384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1010&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1010&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 131.5871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 134.6994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1012&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1012&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 70.7228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 76.5427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 86.5888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 95.3105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfo \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001094012_23768.log b/AMESCoreStudio.Web/logs/stdout_20231001094012_23768.log deleted file mode 100644 index 1746047b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001094012_23768.log +++ /dev/null @@ -1,93 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 301.8546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 326.5121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 49.4443ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 57.7604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 47.6832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 53.7608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 101.1247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 113.5948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 124.5048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 132.1561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 136.6821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 144.2914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 90.5456ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 103.8619ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientH \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001094131_17932.log b/AMESCoreStudio.Web/logs/stdout_20231001094131_17932.log deleted file mode 100644 index 6e6cf3e3..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001094131_17932.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 285.8103ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 314.2903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 64.8826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.7652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 70.2156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.9867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 106.9016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 118.3847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 116.4203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 125.7636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.8382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 157.5554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTT \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001094308_26848.log b/AMESCoreStudio.Web/logs/stdout_20231001094308_26848.log deleted file mode 100644 index 7d0a1e78..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001094308_26848.log +++ /dev/null @@ -1,186 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 271.6906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 304.603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 40.5966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 46.5611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.5741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 83.9787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 104.1959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 109.3269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 116.7309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 125.3449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 131.8238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 153.9767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 187.9969ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 198.9267ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 211.1321ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 222.6838ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 85.5288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 89.9677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 43.2028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 47.4985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.5398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.0748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProductTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProductTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 99.8932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 105.2603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/TestTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/TestTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 118.57ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 121.5311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.8864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.6496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 537.486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 543.5791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://1 \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001094543_25416.log b/AMESCoreStudio.Web/logs/stdout_20231001094543_25416.log deleted file mode 100644 index be1c5d95..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001094543_25416.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 367.8277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 394.7992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 64.9605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 75.3336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 46.9946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 52.2262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 110.8019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 121.3662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 118.0017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 126.632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 140.8423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 155.0346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001094635_32116.log b/AMESCoreStudio.Web/logs/stdout_20231001094635_32116.log deleted file mode 100644 index 427eeb0b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001094635_32116.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 320.8318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 349.8193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 57.8445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 63.3967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.0142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 81.5286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 101.4322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 107.461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 116.4424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 124.2285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 140.7262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.0788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001094959_8780.log b/AMESCoreStudio.Web/logs/stdout_20231001094959_8780.log deleted file mode 100644 index 87280c3d..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001094959_8780.log +++ /dev/null @@ -1,93 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 305.2931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 326.2643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 53.5721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 58.8525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.5469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 133.4261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 106.6954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.1546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.9903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 128.4691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 137.1801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 145.0158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 111.7542ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 122.2435ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1000 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001102250_32840.log b/AMESCoreStudio.Web/logs/stdout_20231001102250_32840.log deleted file mode 100644 index f1af62a5..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001102250_32840.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 324.0983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 345.6123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 62.1448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 69.6682ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 52.3042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 59.3826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 100.3338ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 108.5485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 118.3262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.4795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 160.4532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.7304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTT \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001102551_28064.log b/AMESCoreStudio.Web/logs/stdout_20231001102551_28064.log deleted file mode 100644 index eb49ec92..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001102551_28064.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 322.1796ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 343.8892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 53.6129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 62.5514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 55.6955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 66.445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 100.7292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 111.6624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 112.2335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 119.994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 150.9885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 161.4052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001102702_8728.log b/AMESCoreStudio.Web/logs/stdout_20231001102702_8728.log deleted file mode 100644 index d5f5258a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001102702_8728.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 296.3999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 322.3391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 52.1733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 60.9097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 55.0965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 63.2456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 103.1148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 111.3873ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.5967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 128.0837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 136.4233ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 148.8064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTT \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001103119_4108.log b/AMESCoreStudio.Web/logs/stdout_20231001103119_4108.log deleted file mode 100644 index 8faf7385..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001103119_4108.log +++ /dev/null @@ -1,269 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 191.2696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 200.1017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 38.6668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 45.6515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 43.9266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 49.5439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 112.2344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 116.7389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 108.0763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 116.0697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 140.5883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 145.1835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 114.4454ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 119.6926ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 109.5273ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 115.9562ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 98.7655ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 106.0004ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 129.4253ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 138.6936ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 99.9209ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 105.865ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 107.7231ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 122.2794ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localiz \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231001103423_26224.log b/AMESCoreStudio.Web/logs/stdout_20231001103423_26224.log deleted file mode 100644 index 3ccae596..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231001103423_26224.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 301.9737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 332.4059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 46.8937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 52.4927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 53.2988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 60.5907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 103.2996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 110.9033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 110.7614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 116.9057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 137.9851ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.3299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTT \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231004120936_14388.log b/AMESCoreStudio.Web/logs/stdout_20231004120936_14388.log deleted file mode 100644 index a1114399..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231004120936_14388.log +++ /dev/null @@ -1,127 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 8412.8751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 8437.8288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 204.227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 215.172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 171.5602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 185.3703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 320.8828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 326.0132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 265.7074ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 276.4263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 264.1489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 274.813ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 103.424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 112.0284ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?JsonSerializationException异常 - ---> Newtonsoft.Json.JsonSerializationException: Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'AMESCoreStudio.CommonTools.Result.ResultModel`1[AMESCoreStudio.WebApi.Models.AMES.WipAlarm]' because the type requires a JSON object (e.g. {"name":"value"}) to deserialize correctly. -To fix this error either change the JSON to a JSON object (e.g. {"name":"value"}) or change the deserialized type to an array or a type that implements a collection interface (e.g. ICollection, IList) like List that can be deserialized from a JSON array. JsonArrayAttribute can also be added to the type to force it to deserialize from a JSON array. -Path '', line 1, position 1. - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.EnsureArrayContract(JsonReader reader, Type objectType, JsonContract contract) - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateList(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, Object existingValue, String id) - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent) - at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType) - at Newtonsoft.Json.JsonSerializer.Deserialize(JsonReader reader, Type objectType) - at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings) - at WebApiClient.Defaults.JsonFormatter.Deserialize(String json, Type objType) - at WebApiClient.Attributes.JsonReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetAntiVirusResult?wipNO=&itemNO=&DateStart=2023%2F10%2F01&DateEnd=2023%2F10%2F05 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetAntiVirusResult?wipNO=&itemNO=&DateStart=2023%2F10%2F01&DateEnd=2023%2F10%2F05 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 87.5803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 96.6397ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?JsonSerializationException异常 - ---> Newtonsoft.Json.JsonSerializationException: Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'AMESCoreStudio.CommonTools.Result.ResultModel`1[AMESCoreStudio.WebApi.Models.AMES.WipAlarm]' because the type requires a JSON object (e.g. {"name":"value"}) to deserialize correctly. -To fix this error either change the JSON to a JSON object (e.g. {"name":"value"}) or change the deserialized type to an array or a type that implements a collection interface (e.g. ICollection, IList) like List that can be deserialized from a JSON array. JsonArrayAttribute can also be added to the type to force it to deserialize from a JSON array. -Path '', line 1, position 1. - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.EnsureArrayContract(JsonReader reader, Type objectType, JsonContract contract) - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateList(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, Object existingValue, String id) - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent) - at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType) - at Newtonsoft.Json.JsonSerializer.Deserialize(JsonReader reader, Type objectType) - at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings) - at WebApiClient.Defaults.JsonFormatter.Deserialize(String json, Type objType) - at WebApiClient.Attributes.JsonReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebAp \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231013201123_6836.log b/AMESCoreStudio.Web/logs/stdout_20231013201123_6836.log deleted file mode 100644 index 0ebedf0b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231013201123_6836.log +++ /dev/null @@ -1,128 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5044.589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5055.1892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 908.7254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 913.0699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 174.7384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 182.9504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 187.4932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 194.6765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 372.0222ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 378.7901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 396.5674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 404.0546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 380.0366ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 388.4002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 118.5337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 124.8797ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?JsonSerializationException异常 - ---> Newtonsoft.Json.JsonSerializationException: Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'AMESCoreStudio.CommonTools.Result.ResultModel`1[AMESCoreStudio.WebApi.Models.AMES.WipAlarm]' because the type requires a JSON object (e.g. {"name":"value"}) to deserialize correctly. -To fix this error either change the JSON to a JSON object (e.g. {"name":"value"}) or change the deserialized type to an array or a type that implements a collection interface (e.g. ICollection, IList) like List that can be deserialized from a JSON array. JsonArrayAttribute can also be added to the type to force it to deserialize from a JSON array. -Path '', line 1, position 1. - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.EnsureArrayContract(JsonReader reader, Type objectType, JsonContract contract) - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateList(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, Object existingValue, String id) - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent) - at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType) - at Newtonsoft.Json.JsonSerializer.Deserialize(JsonReader reader, Type objectType) - at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings) - at WebApiClient.Defaults.JsonFormatter.Deserialize(String json, Type objType) - at WebApiClient.Attributes.JsonReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 4924.1643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 4933.4244ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?JsonSerializationException异常 - ---> Newtonsoft.Json.JsonSerializationException: Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'AMESCoreStudio.CommonTools.Result.ResultModel`1[AMESCoreStudio.WebApi.Models.AMES.WipAlarm]' because the type requires a JSON object (e.g. {"name":"value"}) to deserialize correctly. -To fix this error either change the JSON to a JSON object (e.g. {"name":"value"}) or change the deserialized type to an array or a type that implements a collection interface (e.g. ICollection, IList) like List that can be deserialized from a JSON array. JsonArrayAttribute can also be added to the type to force it to deserialize from a JSON array. -Path '', line 1, position 1. - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.EnsureArrayContract(JsonReader reader, Type objectType, JsonContract contract) - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateList(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, Object existingValue, String id) - at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent) - at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objec \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015101838_24728.log b/AMESCoreStudio.Web/logs/stdout_20231015101838_24728.log deleted file mode 100644 index e5f8df39..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015101838_24728.log +++ /dev/null @@ -1,327 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3285.2413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3310.3562ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 94.7035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 104.7431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 124.1991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 133.7322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 183.9017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 192.9264ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 193.8948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 201.7305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 220.4606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 227.0934ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 124.5468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 130.9186ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 121.4464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 131.7837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=0&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 149.2802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 156.6249ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 104.469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 111.4589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 105.7045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 112.0209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 80.8823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 90.1686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 473.8279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 481.1292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 82.1975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 87.5404ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 83.5427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 93.734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 117.579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.2042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=0&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes/System/1000?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 132.0405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 139.2139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 275.4739ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 282.2274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 104.1838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 110.8626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/GetProgramInfoesBySystemModule?systemID=1000&moduleID=1013&page=3&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 111.3506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 125.1559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ModuleInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.0728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 79.8617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 66.1157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 75.627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 113.4317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 118.6304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 504.5643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 512.7894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/1000?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/Role/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 478.7058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 489.6255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 483.6776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 497.1688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 90.1024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 97.7315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProgramInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 113.5561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 121.4692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25905.4927ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25912.3986ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 17776.1414ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 17779.1852ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 17697.9376ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 17711.2685ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceI \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015103240_29304.log b/AMESCoreStudio.Web/logs/stdout_20231015103240_29304.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015103319_25416.log b/AMESCoreStudio.Web/logs/stdout_20231015103319_25416.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015112013_13412.log b/AMESCoreStudio.Web/logs/stdout_20231015112013_13412.log deleted file mode 100644 index 6e39d136..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015112013_13412.log +++ /dev/null @@ -1,232 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 6397.2229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 6405.57ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 95.9954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 99.7788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 101.8131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 108.7996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 202.7235ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 212.9665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 199.7248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 207.2508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 224.8727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 228.7246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 26087.4255ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26091.39ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 55851.4826ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 55856.9795ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24084.1064ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 24089.4646ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 20592.0888ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 20595.3246ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 20226.4453ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 20232.3196ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetAntiVirusResult(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMidd \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015114037_18696.log b/AMESCoreStudio.Web/logs/stdout_20231015114037_18696.log deleted file mode 100644 index f1802a6d..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015114037_18696.log +++ /dev/null @@ -1,103 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 471.7717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 496.368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 91.1548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 98.742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 124.8969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 133.9957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 230.7499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 246.3209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 177.2315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 193.2656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 409.6946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 419.6985ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.AspNetCore.Routing.Matching.AmbiguousMatchException: The request matched multiple endpoints. Matches: - -AMESCoreStudio.Web.Controllers.QRSController.QRS022 (AMESCoreStudio.Web) -AMESCoreStudio.Web.Controllers.QRSController.QRS022 (AMESCoreStudio.Web) - at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.ReportAmbiguity(CandidateState[] candidateState) - at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.ProcessFinalCandidates(HttpContext httpContext, CandidateState[] candidateState) - at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.Select(HttpContext httpContext, CandidateState[] candidateState) - at Microsoft.AspNetCore.Routing.Matching.DfaMatcher.MatchAsync(HttpContext httpContext) - at Microsoft.AspNetCore.Routing.Matching.DataSourceDependentMatcher.MatchAsync(HttpContext httpContext) - at Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware.Invoke(HttpContext httpContext) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.AspNetCore.Routing.Matching.AmbiguousMatchException: The request matched multiple endpoints. Matches: - -AMESCoreStudio.Web.Controllers.QRSController.QRS022 (AMESCoreStudio.Web) -AMESCoreStudio.Web.Controllers.QRSController.QRS022 (AMESCoreStudio.Web) - at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.ReportAmbiguity(CandidateState[] candidateState) - at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.ProcessFinalCandidates(HttpContext httpContext, CandidateState[] candidateState) - at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.Select(HttpContext httpContext, CandidateState[] candidateState) - at Microsoft.AspNetCore.Routing.Matching.DfaMatcher.MatchAsync(HttpContext httpContext) - at Microsoft.AspNetCore.Routing.Matching.DataSourceDependentMatcher.MatchAsync(HttpContext httpContext) - at Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware.Invoke(HttpContext httpContext) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.AspNetCore.Routing.Matching.AmbiguousMatchException: The request matched multiple endpoints. Matches: - -AMESCoreStudio.Web.Controllers.QRSController.QRS022 (AMESCoreStudio.Web) -AMESCoreStudio.Web.Controllers.QRSController.QRS022 (AMESCoreStudio.Web) - at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.ReportAmbiguity(CandidateState[] candidateState) - at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.ProcessFinalCandidates(HttpContext httpContext, CandidateState[] candidateState) - at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.Select(HttpContext httpContext, CandidateState[] candidateState) - at Microsoft.AspNetCore.Routing.Matching.DfaMatcher.MatchAsync(HttpContext httpContext) - at Microsoft.AspNetCore.Routing.Matching.DataSourceDependentMatcher.MatchAsync(HttpContext httpContext) - at Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware.Invoke(HttpContext httpContext) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.AspNetCore.Routing.Matching.AmbiguousMatchException: The request matched multiple endpoints. Matches: - -AMESCoreStudio.Web.Controllers.QRSController.QRS022 (AMESCoreStudio.Web) -AMESCoreStudio.Web.Controllers.QRSController.QRS022 (AMESCoreStudio.Web) - at Microsoft.AspNetCore.Routing.Matching.DefaultEndpoint \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015114322_20660.log b/AMESCoreStudio.Web/logs/stdout_20231015114322_20660.log deleted file mode 100644 index 36c84aed..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015114322_20660.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 265.3094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 283.9468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 59.7191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 68.0467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 65.6638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 76.3369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 150.1541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.1753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 148.3716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 155.9919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 168.2327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 176.4632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - S \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015114654_9668.log b/AMESCoreStudio.Web/logs/stdout_20231015114654_9668.log deleted file mode 100644 index c91e1c33..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015114654_9668.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 272.0851ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 289.633ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 54.5774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 63.5185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 60.801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 70.0711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 116.4833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 126.3578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 132.5787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 139.1296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 152.8371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.1305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sen \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015115245_27936.log b/AMESCoreStudio.Web/logs/stdout_20231015115245_27936.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015121945_22156.log b/AMESCoreStudio.Web/logs/stdout_20231015121945_22156.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015123721_17252.log b/AMESCoreStudio.Web/logs/stdout_20231015123721_17252.log deleted file mode 100644 index 50a0e29c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015123721_17252.log +++ /dev/null @@ -1,75 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcResultMaster/GetFQCHeaderData4QRS016?wipNO=&itemNO=&modelNO=&dateStart=&dateEnd=&factoryID= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcResultMaster/GetFQCHeaderData4QRS016?wipNO=&itemNO=&modelNO=&dateStart=&dateEnd=&factoryID= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetFQCHeaderData4QRS016出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS016AAsync(String modelNO, String itemNO, String wipNO, String dateStart, String dateEnd, String factoryID, String factoryName) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 9700 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult? \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015124427_24476.log b/AMESCoreStudio.Web/logs/stdout_20231015124427_24476.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015125252_12012.log b/AMESCoreStudio.Web/logs/stdout_20231015125252_12012.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015131036_1848.log b/AMESCoreStudio.Web/logs/stdout_20231015131036_1848.log deleted file mode 100644 index 44bb7de1..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015131036_1848.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5361.8913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5374.1515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 129.9294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 136.5108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 117.5763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 125.7754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 228.4263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 234.2015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 265.4825ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 272.9455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 221.6788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 227.1406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015131428_17136.log b/AMESCoreStudio.Web/logs/stdout_20231015131428_17136.log deleted file mode 100644 index eee0db30..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015131428_17136.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 278.8024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 295.2431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 46.0728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 58.2776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 53.1721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 59.8136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 106.131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 113.6575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.6624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 154.2401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 150.4237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 162.0619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Se \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015132501_24908.log b/AMESCoreStudio.Web/logs/stdout_20231015132501_24908.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015132809_20848.log b/AMESCoreStudio.Web/logs/stdout_20231015132809_20848.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015132850_23248.log b/AMESCoreStudio.Web/logs/stdout_20231015132850_23248.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015141337_12316.log b/AMESCoreStudio.Web/logs/stdout_20231015141337_12316.log deleted file mode 100644 index f69ad550..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015141337_12316.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3079.7165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3087.503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 71.6558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 74.4514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 67.3342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 70.5244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.7157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.5726ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 170.8219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.4531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 184.9629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 187.8503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015141643_6908.log b/AMESCoreStudio.Web/logs/stdout_20231015141643_6908.log deleted file mode 100644 index 29866380..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015141643_6908.log +++ /dev/null @@ -1,88 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行Login出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: An error occurred while sending the request. - ---> System.IO.IOException: Unable to read data from the transport connection: 遠端主機已強制關閉一個現存的連線。. - ---> System.Net.Sockets.SocketException (10054): 遠端主機已強制關閉一個現存的連線。 - --- End of inner exception stack trace --- - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken) - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.GetResult(Int16 token) - at System.Net.Http.HttpConnection.FillAsync() - at System.Net.Http.HttpConnection.ReadNextResponseHeaderLineAsync(Boolean foldedHeadersAllowed) - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithNtConnectionAuthAsync(HttpConnection connection, HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.LoginController.Index(LoginViewModel vModel) in D:\安勤\AMESCoreStudio.Web\Controllers\LoginController.cs:line 66 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3386.4457ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3400.2951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 82.5585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 88.8932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 76.8935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.4218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 179.0988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStud \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015141915_27744.log b/AMESCoreStudio.Web/logs/stdout_20231015141915_27744.log deleted file mode 100644 index d012aa62..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015141915_27744.log +++ /dev/null @@ -1,142 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 318.5282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 347.3862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 88.54ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 102.7911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 62.4781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 69.7481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 108.5071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 116.9201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 128.4981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 138.6428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 150.3364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 156.4613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行AuthInfo出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.HomeController.Framework() in D:\安勤\AMESCoreStudio.Web\Controllers\HomeController.cs:line 56 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3055.6208ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3060.6066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 87.2648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 90.6303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 70.6948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 75.3761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 184.7445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 189.0696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[10 \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015142424_26412.log b/AMESCoreStudio.Web/logs/stdout_20231015142424_26412.log deleted file mode 100644 index 2b16bab4..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015142424_26412.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 294.7882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 322.9649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 56.482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 63.3681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 52.7424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 63.5082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 106.3327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 111.991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 110.4785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 117.1159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 151.3757ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 161.7044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sen \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015142854_27824.log b/AMESCoreStudio.Web/logs/stdout_20231015142854_27824.log deleted file mode 100644 index 91c5f6cb..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015142854_27824.log +++ /dev/null @@ -1,207 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 246.748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 259.5637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 44.7251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 48.2906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 47.2169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 51.6785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 178.7965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 182.4362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.2795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 120.8384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 140.6834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 144.0492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 55.8921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 63.4955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 2882.4146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 2889.2491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProductTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProductTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 84.6918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 88.6555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/TestTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/TestTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 150.2608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 157.068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 82.4268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 89.2245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 605.8269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 613.1962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 476.6088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 483.3858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MFGTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MFGTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 83.8948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 90.0017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipClass/GetYieldData4QRS010?unitNo=&lineID=&stationID=&mfgTypeNo=&wipNo=&itemNo=&dateStart=&dateEnd=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipClass/GetYieldData4QRS010?unitNo=&lineID=&stationID=&mfgTypeNo=&wipNo=&itemNo=&dateStart=&dateEnd=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 740.0793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 750.5477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=YS31&stationID=1096&wipNo=9930002441 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=YS31&stationID=1096&wipNo=9930002441 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 303.9278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 311.4939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1105&wipNo=104156701A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1105&wipNo=104156701A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 320.6153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 330.2536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1058&wipNo=104156902A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1058&wipNo=104156902A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 194.878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 206.4964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=L2&stationID=1058&wipNo=103831001B02 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=L2&stationID=1058&wipNo=103831001B02 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 215.9796ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 224.1228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1048&wipNo=104247301A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1048&wipNo=104247301A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 132.0574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 137.0371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=YS00&stationID=1053&wipNo=WO0002A1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=YS00&stationID=1053&wipNo=WO0002A1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 161.0146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 164.1892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1017&wipNo=9380001464 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1017&wipNo=9380001464 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 97.7096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 104.2289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=T1&stationID=1010&wipNo=103852101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=T1&stationID=1010&wipNo=103852101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 137.847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 146.5624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1054&wipNo=9930001428 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1054&wipNo=9930001428 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 158.214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 166.5588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1012&wipNo=9430000302 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipClass/GetPassData4QRS010?lineDesc=DIP線&stationID=1012&wipNo=9430000302 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 104.4295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 112.3867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015143335_31616.log b/AMESCoreStudio.Web/logs/stdout_20231015143335_31616.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015143536_22012.log b/AMESCoreStudio.Web/logs/stdout_20231015143536_22012.log deleted file mode 100644 index 7949e7b7..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015143536_22012.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 206.888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 222.0573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 34.8406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 41.2652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 32.5791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 38.9542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 102.4518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 108.7087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 110.0692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 114.4983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 132.6406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 139.2648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Se \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015143737_24660.log b/AMESCoreStudio.Web/logs/stdout_20231015143737_24660.log deleted file mode 100644 index 8eb44bba..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015143737_24660.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 195.4194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 205.4224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 33.5168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 37.8935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 42.0185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 49.5054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 100.5225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 109.683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 110.7571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 116.651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.7092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.69ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sendi \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015144248_24524.log b/AMESCoreStudio.Web/logs/stdout_20231015144248_24524.log deleted file mode 100644 index 9d1b1413..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015144248_24524.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 187.8641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 201.9336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 32.3273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 36.0456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 33.5285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 37.8848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 89.0751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 93.4369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 114.526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 120.1265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 122.7628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 125.977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sendi \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015150032_25388.log b/AMESCoreStudio.Web/logs/stdout_20231015150032_25388.log deleted file mode 100644 index a030c8ab..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015150032_25388.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 7324.0501ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 7336.8302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 167.9019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 174.9761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 197.4219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 205.1437ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 272.0155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 281.8742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 280.004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 288.1924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 248.4732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 259.9297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015151201_22396.log b/AMESCoreStudio.Web/logs/stdout_20231015151201_22396.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015153257_17980.log b/AMESCoreStudio.Web/logs/stdout_20231015153257_17980.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015153516_25216.log b/AMESCoreStudio.Web/logs/stdout_20231015153516_25216.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015165947_22888.log b/AMESCoreStudio.Web/logs/stdout_20231015165947_22888.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015170132_23856.log b/AMESCoreStudio.Web/logs/stdout_20231015170132_23856.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231015172012_11868.log b/AMESCoreStudio.Web/logs/stdout_20231015172012_11868.log deleted file mode 100644 index f92f713e..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015172012_11868.log +++ /dev/null @@ -1,38 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.Web.Controllers.QRSController+QRS022ViewModel]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.QRS.QRS022ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.A \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015172736_11136.log b/AMESCoreStudio.Web/logs/stdout_20231015172736_11136.log deleted file mode 100644 index b2afc50c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015172736_11136.log +++ /dev/null @@ -1,72 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.Web.ViewModels.QRS.AntiVirus]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.QRS.QRS022ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.Web.ViewModels.QRS.AntiVirus]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.QRS.QRS022ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionM \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015180944_8776.log b/AMESCoreStudio.Web/logs/stdout_20231015180944_8776.log deleted file mode 100644 index 8fe612e7..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015180944_8776.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Async(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015181110_4628.log b/AMESCoreStudio.Web/logs/stdout_20231015181110_4628.log deleted file mode 100644 index 8fe612e7..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015181110_4628.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Async(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015182201_17520.log b/AMESCoreStudio.Web/logs/stdout_20231015182201_17520.log deleted file mode 100644 index 41646995..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015182201_17520.log +++ /dev/null @@ -1,127 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Async(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3136.2698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3154.2456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 118.8082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 126.3379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 78.0039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.1294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 153.2179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 157.9543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 176.5513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 183.9669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 237.9972ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 271.9226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14910.1354ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14918.3435ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Async(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infras \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015182623_17152.log b/AMESCoreStudio.Web/logs/stdout_20231015182623_17152.log deleted file mode 100644 index bf64b0c3..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015182623_17152.log +++ /dev/null @@ -1,92 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 203.9993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 212.5659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 54.1948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 57.2266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 59.6566ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 63.2854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.7441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 104.5843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 110.432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 136.8822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 141.4005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 32102.881ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 32109.1605ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Async(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart= \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015183629_15900.log b/AMESCoreStudio.Web/logs/stdout_20231015183629_15900.log deleted file mode 100644 index ceb844c7..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231015183629_15900.log +++ /dev/null @@ -1,92 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 317.6551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 345.9335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 81.4546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 94.1747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 52.3561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 59.1712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 113.2215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 119.2318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 133.4672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 143.2425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 167.1978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.6678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14304.0626ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14310.6648ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Async(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateS \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231015184013_26416.log b/AMESCoreStudio.Web/logs/stdout_20231015184013_26416.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231016120221_20288.log b/AMESCoreStudio.Web/logs/stdout_20231016120221_20288.log deleted file mode 100644 index 4cc6d762..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231016120221_20288.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: 'AMESCoreStudio.Web.ViewModels.QRS.QRS022ViewModel' does not contain a definition for 'WIP' - at CallSite.Target(Closure , CallSite , Object ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0) - at AspNetCore.Views_QRS_QRS022.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\QRS\QRS022.cshtml:line 122 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: 'AMESCoreStudio.Web.ViewModels.QRS.QRS022ViewModel' does not contain a definition for 'WIP' - at CallSite.Target(Closure , CallSite , Object ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0) - at AspNetCore.Views_QRS_QRS022.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\QRS\QRS022.cshtml:line 122 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: 'AMESCoreStudio.Web.ViewModels.QRS.QRS022ViewModel' does not contain a definition for 'WIP' - at CallSite.Target(Closure , CallSite , Object ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0) - at AspNetCore.Views_QRS_QRS022.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\QRS\QRS022.cshtml:line 122 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: 'AMESCoreStudio.Web.ViewModels.QRS.QRS022ViewModel' does not contain a definition for 'WIP' - at CallSite.Target(Closure , CallSite , Object ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0) - at AspNetCore.Views_QRS_QRS022.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\QRS\QRS022.cshtml:line 122 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231016121550_2340.log b/AMESCoreStudio.Web/logs/stdout_20231016121550_2340.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231016130745_10628.log b/AMESCoreStudio.Web/logs/stdout_20231016130745_10628.log deleted file mode 100644 index b6f4cc4a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231016130745_10628.log +++ /dev/null @@ -1,75 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=123&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=123&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionC \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231016131453_22116.log b/AMESCoreStudio.Web/logs/stdout_20231016131453_22116.log deleted file mode 100644 index 52db4857..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231016131453_22116.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231016131627_26928.log b/AMESCoreStudio.Web/logs/stdout_20231016131627_26928.log deleted file mode 100644 index 52db4857..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231016131627_26928.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10653 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231016132315_12576.log b/AMESCoreStudio.Web/logs/stdout_20231016132315_12576.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231016132544_26656.log b/AMESCoreStudio.Web/logs/stdout_20231016132544_26656.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231016132639_12368.log b/AMESCoreStudio.Web/logs/stdout_20231016132639_12368.log deleted file mode 100644 index dcaf242b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231016132639_12368.log +++ /dev/null @@ -1,75 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10654 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231016141413_6952.log b/AMESCoreStudio.Web/logs/stdout_20231016141413_6952.log deleted file mode 100644 index 49c27b7f..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231016141413_6952.log +++ /dev/null @@ -1,75 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=dddd&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=dddd&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActio \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231016141838_25004.log b/AMESCoreStudio.Web/logs/stdout_20231016141838_25004.log deleted file mode 100644 index 1963e700..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231016141838_25004.log +++ /dev/null @@ -1,129 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5677.8119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5689.7247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 123.5853ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 131.784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 106.5945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 113.2148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 190.9883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 195.5274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 200.8855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 208.8207ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 216.5025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 221.2654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 29023.5919ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=yuiyui&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 29027.2509ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=yuiyui&itemNO=&DateStart=&DateEnd= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: An error occurred while sending the request. - ---> System.IO.IOException: Unable to read data from the transport connection: 遠端主機已強制關閉一個現存的連線。. - ---> System.Net.Sockets.SocketException (10054): 遠端主機已強制關閉一個現存的連線。 - --- End of inner exception stack trace --- - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken) - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.GetResult(Int16 token) - at System.Net.Http.HttpConnection.FillAsync() - at System.Net.Http.HttpConnection.ReadNextResponseHeaderLineAsync(Boolean foldedHeadersAllowed) - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithNtConnectionAuthAsync(HttpConnection connection, HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|1 \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231016142418_22672.log b/AMESCoreStudio.Web/logs/stdout_20231016142418_22672.log deleted file mode 100644 index eea6cd0b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231016142418_22672.log +++ /dev/null @@ -1,144 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 18603.2881ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 18615.0877ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=yui&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=yui&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23763.6325ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 23766.5158ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=yui&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=yui&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 1622.4608ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 1625.9942ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=yui&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=yui&itemNO=&DateStart=&DateEnd= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 35641.8687ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 35644.6308ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.A \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231016142903_13976.log b/AMESCoreStudio.Web/logs/stdout_20231016142903_13976.log deleted file mode 100644 index e0e4e4be..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231016142903_13976.log +++ /dev/null @@ -1,78 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=&itemNO=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: An error occurred while sending the request. - ---> System.IO.IOException: Unable to read data from the transport connection: 遠端主機已強制關閉一個現存的連線。. - ---> System.Net.Sockets.SocketException (10054): 遠端主機已強制關閉一個現存的連線。 - --- End of inner exception stack trace --- - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken) - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.GetResult(Int16 token) - at System.Net.Http.HttpConnection.FillAsync() - at System.Net.Http.HttpConnection.ReadNextResponseHeaderLineAsync(Boolean foldedHeadersAllowed) - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithNtConnectionAuthAsync(HttpConnection connection, HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=yui&itemNO=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?wipNO=yui&itemNO=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: An error occurred while sending the request. - ---> System.IO.IOException: Unable to read data from the transport connection: 遠端主機已強制關閉一個現存的連線。. - ---> System.Net.Sockets.SocketException (10054): 遠端主機已強制關閉一個現存的連線。 - --- End of inner exception stack trace --- - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken) - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.GetResult(Int16 token) - at System.Net.Http.HttpConnection.FillAsync() - at System.Net.Http.HttpConnection.ReadNextResponseHeaderLineAsync(Boolean foldedHeadersAllowed) - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithNtConnectionAuthAsync(HttpConnection connection, HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(Ht \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231016143116_28820.log b/AMESCoreStudio.Web/logs/stdout_20231016143116_28820.log deleted file mode 100644 index 3fe29cce..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231016143116_28820.log +++ /dev/null @@ -1,78 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=yui&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=yui&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: An error occurred while sending the request. - ---> System.IO.IOException: Unable to read data from the transport connection: 遠端主機已強制關閉一個現存的連線。. - ---> System.Net.Sockets.SocketException (10054): 遠端主機已強制關閉一個現存的連線。 - --- End of inner exception stack trace --- - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken) - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.GetResult(Int16 token) - at System.Net.Http.HttpConnection.FillAsync() - at System.Net.Http.HttpConnection.ReadNextResponseHeaderLineAsync(Boolean foldedHeadersAllowed) - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithNtConnectionAuthAsync(HttpConnection connection, HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: An error occurred while sending the request. - ---> System.IO.IOException: Unable to read data from the transport connection: 遠端主機已強制關閉一個現存的連線。. - ---> System.Net.Sockets.SocketException (10054): 遠端主機已強制關閉一個現存的連線。 - --- End of inner exception stack trace --- - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken) - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.GetResult(Int16 token) - at System.Net.Http.HttpConnection.FillAsync() - at System.Net.Http.HttpConnection.ReadNextResponseHeaderLineAsync(Boolean foldedHeadersAllowed) - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithNtConnectionAuthAsync(HttpConnection connection, HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMes \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231017120404_4500.log b/AMESCoreStudio.Web/logs/stdout_20231017120404_4500.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231017120450_11848.log b/AMESCoreStudio.Web/logs/stdout_20231017120450_11848.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231017120515_12112.log b/AMESCoreStudio.Web/logs/stdout_20231017120515_12112.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231017120559_1732.log b/AMESCoreStudio.Web/logs/stdout_20231017120559_1732.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231017120659_23124.log b/AMESCoreStudio.Web/logs/stdout_20231017120659_23124.log deleted file mode 100644 index b48431ca..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231017120659_23124.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetC \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231017121122_22648.log b/AMESCoreStudio.Web/logs/stdout_20231017121122_22648.log deleted file mode 100644 index 42e6a772..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231017121122_22648.log +++ /dev/null @@ -1,354 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231017123920_26924.log b/AMESCoreStudio.Web/logs/stdout_20231017123920_26924.log deleted file mode 100644 index 9bc9879a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231017123920_26924.log +++ /dev/null @@ -1,180 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExec \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231017125201_18404.log b/AMESCoreStudio.Web/logs/stdout_20231017125201_18404.log deleted file mode 100644 index 42536dbd..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231017125201_18404.log +++ /dev/null @@ -1,422 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at M \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231027121405_8592.log b/AMESCoreStudio.Web/logs/stdout_20231027121405_8592.log deleted file mode 100644 index 0e951aa0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231027121405_8592.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetC \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231027121621_9968.log b/AMESCoreStudio.Web/logs/stdout_20231027121621_9968.log deleted file mode 100644 index 9a35c967..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231027121621_9968.log +++ /dev/null @@ -1,460 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0 \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231027124626_13640.log b/AMESCoreStudio.Web/logs/stdout_20231027124626_13640.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231027124642_4264.log b/AMESCoreStudio.Web/logs/stdout_20231027124642_4264.log deleted file mode 100644 index 0e951aa0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231027124642_4264.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetC \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231027125827_5444.log b/AMESCoreStudio.Web/logs/stdout_20231027125827_5444.log deleted file mode 100644 index 0eaa6e04..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231027125827_5444.log +++ /dev/null @@ -1,1017 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionC \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231027140553_19340.log b/AMESCoreStudio.Web/logs/stdout_20231027140553_19340.log deleted file mode 100644 index 9d60fcf6..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231027140553_19340.log +++ /dev/null @@ -1,1363 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetFactoryUnits出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.PCSController.GetFactoryUnit(Boolean SelectAll) in D:\安勤\AMESCoreStudio.Web\Controllers\PCSController.cs:line 339 - at AMESCoreStudio.Web.Controllers.PCSController.PCS005(String id) in D:\安勤\AMESCoreStudio.Web\Controllers\PCSController.cs:line 4015 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceI \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231027143222_5536.log b/AMESCoreStudio.Web/logs/stdout_20231027143222_5536.log deleted file mode 100644 index 0e951aa0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231027143222_5536.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetC \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231027143339_13068.log b/AMESCoreStudio.Web/logs/stdout_20231027143339_13068.log deleted file mode 100644 index c966d74a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231027143339_13068.log +++ /dev/null @@ -1,76 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebAp \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231029034345_31076.log b/AMESCoreStudio.Web/logs/stdout_20231029034345_31076.log deleted file mode 100644 index ff2b6115..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231029034345_31076.log +++ /dev/null @@ -1,180 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExec \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231029044954_16568.log b/AMESCoreStudio.Web/logs/stdout_20231029044954_16568.log deleted file mode 100644 index 0e951aa0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231029044954_16568.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetC \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231029162848_23208.log b/AMESCoreStudio.Web/logs/stdout_20231029162848_23208.log deleted file mode 100644 index 0ce7d00d..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231029162848_23208.log +++ /dev/null @@ -1,143 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行GetAntiVirusResult出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspN \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231031130907_7316.log b/AMESCoreStudio.Web/logs/stdout_20231031130907_7316.log deleted file mode 100644 index d0cd25fe..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231031130907_7316.log +++ /dev/null @@ -1,41 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpApiException: ?行Login出?HttpRequestException异常 - ---> System.Net.Http.HttpRequestException: 無法連線,因為目標電腦拒絕連線。 - ---> System.Net.Sockets.SocketException (10061): 無法連線,因為目標電腦拒絕連線。 - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32 port, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean allowHttp2, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at Microsoft.Extensions.Http.Logging.LoggingScopeHttpMessageHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) - at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - --- End of inner exception stack trace --- - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.LoginController.Index(LoginViewModel vModel) in D:\安勤\AMESCoreStudio.Web\Controllers\LoginController.cs:line 66 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope s \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231031131020_14688.log b/AMESCoreStudio.Web/logs/stdout_20231031131020_14688.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231031131104_24296.log b/AMESCoreStudio.Web/logs/stdout_20231031131104_24296.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231031131906_26768.log b/AMESCoreStudio.Web/logs/stdout_20231031131906_26768.log deleted file mode 100644 index 4f47d611..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231031131906_26768.log +++ /dev/null @@ -1,339 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 9302.2742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 9314.9754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 154.9459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 164.1852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 95.0006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 104.4838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 52.3442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 66.3979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 15375.5465ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 15380.4872ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 59.8709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 68.7388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14602.5488ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14608.9094ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14924.4054ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14963.1657ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IQRS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ESTorque/ESTorqueByQuery?wipNo=&sapNo=&sDate=&eDate=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IQRS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ESTorque/ESTorqueByQuery?wipNo=&sapNo=&sDate=&eDate=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IQRS.ClientHandler[101] - Received HTTP response after 82.6197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IQRS.LogicalHandler[101] - End processing HTTP request after 89.7021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14669.7472ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14679.9501ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14688.3632ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14692.7441ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14925.5463ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14956.9477ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 384.3679ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 396.2477ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14682.8347ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14687.3095ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentic \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231031133142_12216.log b/AMESCoreStudio.Web/logs/stdout_20231031133142_12216.log deleted file mode 100644 index 5cdc5bf6..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231031133142_12216.log +++ /dev/null @@ -1,633 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 9988.0881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 10021.7814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 186.3423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 193.8392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 179.1533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 189.0045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 305.8393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 314.0189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 337.1913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 344.459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 287.2028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 299.7011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 15159.2427ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 15165.1186ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14903.1544ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14912.9264ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14856.3861ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14863.3699ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14638.7417ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14646.1338ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 215.6728ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 220.8675ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 157.7678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 162.7057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 136.0749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 141.1428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAlarms/GetWipAlarm2?alarmTypeID=0&wipNO=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 443.4235ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 448.3365ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.GetWipAlarmsByType(Int32 alarmTypeID, String wipNO, Int32 page, Int32 limit) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 1004 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 79.0605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 87.5857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14629.6706ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14642.9468ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14879.2342ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14886.6551ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14947.7957ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14959.2707ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 105.9472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 115.1876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 410.5251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 420.2496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 148.5258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 167.5654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 15064.6439ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 15076.3611ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS022Query(String wipNO, String itemNO, String DateStart, String DateEnd) in D:\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 10658 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 79.9085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 87.527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 201.3252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 212.2062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 987.8128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 997.3881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 617.7012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 633.3523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 595.2693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 607.7001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1090.6224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1104.4857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 449.3662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 458.2293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/17044 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/17044 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 213.3957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 224.2312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 76.7001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 86.6808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 211.3586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 220.3085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 432.1727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 445.9018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.6017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 84.3096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 465.4866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 478.4833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 212.2609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 235.9365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 378.5565ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 391.2274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 256.7293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 265.4966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 352.0398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 365.4537ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 222.3152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 233.0201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 94.4587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 105.3679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 126.1757ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 134.5453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 273.4751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 284.7984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/D/-99/Apple -info: System.Net.H \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231101113639_29028.log b/AMESCoreStudio.Web/logs/stdout_20231101113639_29028.log deleted file mode 100644 index 7ec7a4d4..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231101113639_29028.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 6791.935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 6806.4176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 170.4385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 179.13ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 110.0415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 119.6243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 223.1144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 231.5294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 225.8427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 233.2083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 239.5461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 247.7419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/AntiVirusResult/GetAntiVirusResult?WIP=&Model=&STime=&ETime= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231101114634_17780.log b/AMESCoreStudio.Web/logs/stdout_20231101114634_17780.log deleted file mode 100644 index 060dc112..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231101114634_17780.log +++ /dev/null @@ -1,501 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4651.0626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4663.1924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 78.7592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 84.1561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 97.9353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 103.4008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 207.6324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 217.1781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 203.7353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 209.9462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 213.771ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 218.8115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 110.778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 114.9128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 639.865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 649.7469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.8207ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.0644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.8444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.3343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.2495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.1295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 391.7441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 405.5492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 397.6164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 412.4781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 323.4939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 327.4368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 354.6197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 364.298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 177.2586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 181.3837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 220.2628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 226.3556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 155.4382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 162.2778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 53.1022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 62.3446ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes/Query/-99/A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes/Query/-99/A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 94.3993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 100.2824ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 50.2312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 60.8894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitVarityInfoes/Query/-99/-99/A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitVarityInfoes/Query/-99/-99/A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 460.2809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 473.8097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitVendorInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitVendorInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 126.9128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 133.4416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 38.9589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 48.6796ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitInfoes/Query/-99/-99/-99/%2A/%2A/%2A/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitInfoes/Query/-99/-99/-99/%2A/%2A/%2A/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 509.6258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 516.4443ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitInfoes/Query/-99/-99/-99/A/%2A/%2A/U -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitInfoes/Query/-99/-99/-99/A/%2A/%2A/U -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 341.6863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 346.0927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitInfoes/Query/-99/-99/-99/%2A/%2A/%2A/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitInfoes/Query/-99/-99/-99/%2A/%2A/%2A/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 312.321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 316.0759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitInfoes/Query/-99/-99/-99/A/%2A/%2A/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitInfoes/Query/-99/-99/-99/A/%2A/%2A/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 307.2062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 312.6971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 48.0716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 59.7443ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitInfoes/Query/-99/-99/-99/%2A/%2A/%2A/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitInfoes/Query/-99/-99/-99/%2A/%2A/%2A/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitFactoryInfos -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitFactoryInfos -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 312.8827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 316.7084ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 137.8373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 148.289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 72.394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 83.6211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitVarityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitVarityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 339.0982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 346.6225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitVendorInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitVendorInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 43.1691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 65.9115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitFactoryInfos -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitFactoryInfos -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 45.5648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 54.1717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 144.4165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 154.265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 66.6361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.9513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 66.0421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 80.8307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 499.3763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 513.2829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.1293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.3199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ClassInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ClassInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 298.3827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 309.4507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/TimeSegments -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/TimeSegments -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 324.4873ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 336.7858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StationTypes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StationTypes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 73.1789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 90.7696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StationTypes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StationTypes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 67.2549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.4893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.1959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 399.4113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 408.0199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.6496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 102.7018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 122.1675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 68.5203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.2348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.1097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.0382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.5052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow2/_0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow2/_0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 10278.0019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 10285.1396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow2/_0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow2/_0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 460.1821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 465.2856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 74.9956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/1002 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/1002 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.9691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.0862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 560.4311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 582.174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.576ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.1188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.0546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.3719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.6742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.7064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 75.1981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.4668ms - OK -info: System.Net.Http.HttpClient.AMESCor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231101124912_17752.log b/AMESCoreStudio.Web/logs/stdout_20231101124912_17752.log deleted file mode 100644 index 9cb5131c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231101124912_17752.log +++ /dev/null @@ -1,173 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4897.0068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4908.8597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 84.362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 91.6002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.8655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 94.8078ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 206.0111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 211.0582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 215.4783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 219.3108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 217.9378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 223.2099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 96.0888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 100.8143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.9838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.6681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.8185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.5788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.3688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 74.3352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.1599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.6533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.3268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.4105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 82.6477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.5045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.1462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 68.6818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.1057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.4263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.2041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.2831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.9454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.7415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.0483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.4297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.2191ms - OK -info: System.Net.Ht \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231101134422_34476.log b/AMESCoreStudio.Web/logs/stdout_20231101134422_34476.log deleted file mode 100644 index d35f8dc1..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231101134422_34476.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3148.2968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3158.0859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 72.8622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 76.1547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 61.5531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 66.896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 159.6945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 165.4309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 192.2411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 200.1276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 214.0834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 219.1248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231101134545_10860.log b/AMESCoreStudio.Web/logs/stdout_20231101134545_10860.log deleted file mode 100644 index 491e546a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231101134545_10860.log +++ /dev/null @@ -1,285 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3158.5992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3171.5196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 61.8634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 66.4779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 76.3564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 86.1237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 150.2633ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 160.0491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 183.0233ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 192.8228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 205.8879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 211.9201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.3638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 85.1221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.9802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.0813ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.8522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.8112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 115.0449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 122.2644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 78.996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 91.6119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.9347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.87ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.0032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.6863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 62.9027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.4182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.6699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 106.5756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 109.9761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.2328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.1341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.4234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.9557ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.0631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.3603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.443ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.5194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 50.396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 58.4283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 39.2273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 45.5076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 101.7044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 110.7333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 135.4644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 148.2362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 156.159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 161.8843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.5146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 45.3238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 47.8987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 43.1036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 45.7934ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 94.7502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 97.419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 132.918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 141.8455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 156.6961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 161.5898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.9952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.8681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.8937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.4541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.2475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 82.6406ms - OK -info: System.Net \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231102020426_32832.log b/AMESCoreStudio.Web/logs/stdout_20231102020426_32832.log deleted file mode 100644 index 91429147..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231102020426_32832.log +++ /dev/null @@ -1,203 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4210.2697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4220.4726ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 58.3522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 61.3015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 54.1167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 57.2068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 82.6023ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.4476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 128.5677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 132.2128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 134.2008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 136.7509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.0976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 280.4677ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 283.4792ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 82.3942ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 85.3231ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 73.3571ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 75.8695ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 75.2767ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 77.9003ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetC \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231102053535_38772.log b/AMESCoreStudio.Web/logs/stdout_20231102053535_38772.log deleted file mode 100644 index 9b9aa706..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231102053535_38772.log +++ /dev/null @@ -1,282 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3764.2632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3772.5341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 64.022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 66.377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 57.2799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 60.2536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 111.2053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 113.6382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 148.9195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 151.3455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 164.9087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 167.7258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.4009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.6248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 181.592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 449.882ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 452.6321ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.1082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.9899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 112.8805ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 115.261ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 83.1476ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 85.8297ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 84.2592ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 86.797ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 83.6246ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 86.5535ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 77.6155ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 80.2594ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231102055611_49824.log b/AMESCoreStudio.Web/logs/stdout_20231102055611_49824.log deleted file mode 100644 index 72f9d4cc..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231102055611_49824.log +++ /dev/null @@ -1,206 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3469.8805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3478.3214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 60.997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 63.7003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 57.6546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 60.8062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 111.5675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 113.9853ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 146.0042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 148.6329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 152.3678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 155.0256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 74.8879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 77.5794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.3052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.0588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3470.0427ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 3473.266ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 7865.6435ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 7868.6123ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 80338.6974ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 80341.31ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 41763.1397ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 41766.1902ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231102060849_6756.log b/AMESCoreStudio.Web/logs/stdout_20231102060849_6756.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231102061231_44588.log b/AMESCoreStudio.Web/logs/stdout_20231102061231_44588.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231102090844_31288.log b/AMESCoreStudio.Web/logs/stdout_20231102090844_31288.log deleted file mode 100644 index c515177c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231102090844_31288.log +++ /dev/null @@ -1,98 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3213.6883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3222.2539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 70.2067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.0477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 49.0811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 52.7909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 88.2763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 91.1221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 132.0119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 135.5993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 133.4779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 136.9928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/NgInfo/GetNgInfoByStatus4REP001?status=0&factoryNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/NgInfo/GetNgInfoByStatus4REP001?status=0&factoryNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 432.1937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 435.6681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.0575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.0101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 24004.4124ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 24007.497ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker. \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231102093446_32576.log b/AMESCoreStudio.Web/logs/stdout_20231102093446_32576.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231102093506_31044.log b/AMESCoreStudio.Web/logs/stdout_20231102093506_31044.log deleted file mode 100644 index 5df3805b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231102093506_31044.log +++ /dev/null @@ -1,361 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2855.6057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2864.0503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 66.8847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 69.6383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 55.7985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 59.3877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 131.0606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 134.3725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 146.5449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 149.398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 175.4245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 178.1691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=S&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=S&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 93.2883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 96.8104ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVM2105%2C1003 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVM2105%2C1003 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 38.8138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 41.3019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 265.1374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 267.4937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 62.0799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 65.0793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 41.1136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 43.6724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.1984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 40.833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.3664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.2662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 37.2748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 39.5803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 39.917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 42.3423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 69.8747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 72.3114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 71.4639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 73.5895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 36.9884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 39.7603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 40.0723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 42.3416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 42.6229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 46.6306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 53.8765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 56.4364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1004 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1004 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 22.8341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 25.3133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 164.4034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 166.9395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 42.3647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 36.0538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 38.587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 37.9588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.6995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 40.2927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 42.816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 42.2656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 44.8621ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.7532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 42.2882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 53.8367ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 56.2106ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 44.8431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 50.6173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.7763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 41.7634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 44.2695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 43.3238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 46.0496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 50.0496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 52.3819ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.1127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.0496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.7946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.1022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.9663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.7056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.8005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.2657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 159.2275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 161.6818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 79.8285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 82.9615ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 243.5811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 246.1288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2349.0935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2356.1439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 76.687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.6401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.Htt \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231102094420_4588.log b/AMESCoreStudio.Web/logs/stdout_20231102094420_4588.log deleted file mode 100644 index cf76d688..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231102094420_4588.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3343.242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3351.8629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 53.9612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 57.0879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 50.9991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 54.2885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.8655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.0214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 134.0281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 136.8782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 132.9684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 136.79ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Wor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231103014622_27520.log b/AMESCoreStudio.Web/logs/stdout_20231103014622_27520.log deleted file mode 100644 index afc34a44..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231103014622_27520.log +++ /dev/null @@ -1,108 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3645.9353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3654.8671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 78.9891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 81.4919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 53.6886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 57.0053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 154.4982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 157.4548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 142.3799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.1653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.7738ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 148.2606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 160.148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 164.0943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.8357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.6245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 375.6403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 379.2627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.9794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32.7745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19662.8705ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19665.3114ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 70 - at AMESCoreStudio.Web.Controllers.WHSController.WHS005() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 620 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3.6345ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 7.3303ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3.8557ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 7.2179ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.3797ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.6503ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.9606ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.9121ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.8353ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.5643ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.379ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.231ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.684ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.877ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.434ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.6363ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.4498ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.6186ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.6273ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.9074ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.7772ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 6.7707ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.489ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.7124ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.1146ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.0701ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.6335ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.2992ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(Ht \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231103035424_42824.log b/AMESCoreStudio.Web/logs/stdout_20231103035424_42824.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231103035633_46920.log b/AMESCoreStudio.Web/logs/stdout_20231103035633_46920.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231103035945_19512.log b/AMESCoreStudio.Web/logs/stdout_20231103035945_19512.log deleted file mode 100644 index 16ba193f..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231103035945_19512.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 283.8295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 293.8457ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 35.4728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 38.2168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 30.1425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 32.872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.9694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 145.5499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 149.2229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 147.3492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 150.4822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Fa \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231104031938_18136.log b/AMESCoreStudio.Web/logs/stdout_20231104031938_18136.log deleted file mode 100644 index c3ffa242..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231104031938_18136.log +++ /dev/null @@ -1,223 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3933.0043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3940.6013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 109.7387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 112.2595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 68.0122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 71.2611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 158.8909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 161.4868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 196.0907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 199.9645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 215.5747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 217.9049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 94.1732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 96.6437ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 110.3132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 114.2572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 49.7234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 55.8521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 53.492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 58.4222ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 60.6261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 66.9386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 48.8013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 53.9781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.7126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 48.0593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 31.2911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 35.0239ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.0059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.3671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 45.9077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 51.4511ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 64.9662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 70.0396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.7453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.0341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 236.0642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 241.1261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.5611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.8342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 37.8135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 42.6291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 62.1576ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.8215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 45.8058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 52.3427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.3359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 45.6447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 44.9367ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 49.294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 37.8966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 43.0067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 107.332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 114.0516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.We \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231104035038_4624.log b/AMESCoreStudio.Web/logs/stdout_20231104035038_4624.log deleted file mode 100644 index 116d6232..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231104035038_4624.log +++ /dev/null @@ -1,310 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 7200.9524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 7211.0878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 94.9829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 99.6443ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 98.0326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 102.0687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 245.9959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 250.483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 277.4816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 282.0443ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 253.7981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 257.8362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 129.5914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 135.3798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 188.5203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.2067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 58.3124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 64.8121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.1177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 49.315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 53.5767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 59.7292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 66.8741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 41.9204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 47.1957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.2728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.3538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 49.3435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 54.3808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 89.9526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 95.053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 47.4671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 54.2651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 47.5602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 53.6637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.2468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.8634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 92.9765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 98.1591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 71.2018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 100.8257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 46.8009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 54.5556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.9928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.9646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 137.186ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 144.3078ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 100.449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 107.0493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 87.0517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 92.7836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.2667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.0336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 108.1746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 116.4197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 130.8922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 142.9093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 155.6009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 161.0214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/undefined -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 109.2877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 115.0237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.2725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.6884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1843.6436ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1848.9356ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 640 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 947.9066ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 953.8325ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.Ap \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231104041222_8868.log b/AMESCoreStudio.Web/logs/stdout_20231104041222_8868.log deleted file mode 100644 index 8bf5e43f..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231104041222_8868.log +++ /dev/null @@ -1,303 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3742.1039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2614.3634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3768.9558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2632.9554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 342.8818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 348.5004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 83.4803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 97.8925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 88.3215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 94.0154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 219.3431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 225.6794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 249.6136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 257.3388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 273.2334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 279.5564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 106.3897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 111.74ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 535.7001ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 539.457ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 427.5203ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 432.0183ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.2989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.8274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 100.0954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 104.609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.0789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 96.9001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 154.0619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.1408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 495.1492ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 500.3515ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 191.3256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 200.5681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 193.7245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 221.5855ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.2114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.1887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 404.5ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 408.5087ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 400.9521ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 404.2076ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String ut) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 633 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.1514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.7206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 80.8028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 86.6711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/FTByConfig/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/FTByConfig/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 190.857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 197.0093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS014?unitNo=%2A&itemNO=&wipNO=&dateStart=&dateEnd=&modelNO=&werksNo=&dateType=WipDate -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS014?unitNo=%2A&itemNO=&wipNO=&dateStart=&dateEnd=&modelNO=&werksNo=&dateType=WipDate -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 502.0483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 505.472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/FTByConfig/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/FTByConfig/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 185.694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 188.8085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS014?unitNo=%2A&itemNO=&wipNO=&dateStart=&dateEnd=&modelNO=&werksNo=&dateType=WipDate -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS014?unitNo=%2A&itemNO=&wipNO=&dateStart=&dateEnd=&modelNO=&werksNo=&dateType=WipDate -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 189.2015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 193.6475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20220.0245ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20226.4689ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 70 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003() in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 495 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231104063721_13900.log b/AMESCoreStudio.Web/logs/stdout_20231104063721_13900.log deleted file mode 100644 index d3caa7b1..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231104063721_13900.log +++ /dev/null @@ -1,171 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4952.9151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4971.8502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 87.2595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 92.3615ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 83.6735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 89.2028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 173.5309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 182.3799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 215.8215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 220.9184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 265.6942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 273.8071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 124.9426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 130.5166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.2708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.4046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.7123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.9761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.9227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.4936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.2538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.2919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 58.5755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 64.9662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 59.4419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 66.4638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 117.3551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 123.1158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 147.8429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.0129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 191.5766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 199.0068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.0852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.4622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 91.1727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 100.1107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.2235ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.3698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.1641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.0845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.Cli \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231104065607_35248.log b/AMESCoreStudio.Web/logs/stdout_20231104065607_35248.log deleted file mode 100644 index 6cc84cf1..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231104065607_35248.log +++ /dev/null @@ -1,147 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3866.9361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3889.4148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 94.4307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 104.5189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 79.2357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 86.0713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 192.2738ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 202.2712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 194.7672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 201.7363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 232.3564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 236.784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 94.4941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 102.2358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/-1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/-1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 71.9158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 79.1269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 90.9593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.1213ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 47.1982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 49.6768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/TEST -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/TEST -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1986.6754ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1989.8779ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 46.2771ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 50.9223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/TEST -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/TEST -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3097.8861ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 3102.4675ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.Inv \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231104065902_22076.log b/AMESCoreStudio.Web/logs/stdout_20231104065902_22076.log deleted file mode 100644 index 5af8a41c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231104065902_22076.log +++ /dev/null @@ -1,98 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3525.0988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3542.8324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 105.0344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 112.6714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 75.0092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 80.6199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 214.1368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 218.8408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 200.9486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 208.8436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 208.8486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 215.6291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 107.9113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 115.7251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 95.2413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 99.1724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/TEST -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/TEST -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 5732.0992ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5735.3476ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTa \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231104080531_24244.log b/AMESCoreStudio.Web/logs/stdout_20231104080531_24244.log deleted file mode 100644 index 8cb2a086..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231104080531_24244.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 538.7083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 558.4863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 64.0293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 69.8636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 71.5323ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 78.1523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 189.875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 195.5357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 206.4197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 214.7584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 335.2509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 342.0799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryU \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231104083341_11460.log b/AMESCoreStudio.Web/logs/stdout_20231104083341_11460.log deleted file mode 100644 index 3c27feae..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231104083341_11460.log +++ /dev/null @@ -1,186 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 372.8021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 380.7489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 45.2898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 48.2855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 44.6463ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 47.0322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 154.7531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.2201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 190.915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 194.5076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 233.6052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 243.6651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 84.0151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 91.996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 4094.3979ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 4098.4774ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 9743.3361ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 9747.9791ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 66.6551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 71.2356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 36.7797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 41.0857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 100.151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 106.6105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.8302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 152.7982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 171.1609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 178.9118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.2128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.7573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231104083634_16400.log b/AMESCoreStudio.Web/logs/stdout_20231104083634_16400.log deleted file mode 100644 index e66ea182..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231104083634_16400.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3446.6431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3470.5292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 71.0745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 78.7946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 81.497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 86.9798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 192.8062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 202.2093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 202.8333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 214.1405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 225.3389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 233.0644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231104084046_34736.log b/AMESCoreStudio.Web/logs/stdout_20231104084046_34736.log deleted file mode 100644 index d8b0b142..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231104084046_34736.log +++ /dev/null @@ -1,150 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3542.6595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3557.6842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 71.4037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 75.6878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 105.0593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 113.3817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 195.4188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 201.3358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 181.2972ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 188.3399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 222.7609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 231.4377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 85.6302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 92.0231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/YT -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/YT -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 5093.8229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5102.9506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 21748.4886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 21754.1389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 344.0709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 347.2044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/17045 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/17045 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 199.3138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.3375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 22938.7037ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 22942.1232ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 392.9661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 398.1424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 39.0171ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 42.4196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GE \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105065600_18368.log b/AMESCoreStudio.Web/logs/stdout_20231105065600_18368.log deleted file mode 100644 index d272d320..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105065600_18368.log +++ /dev/null @@ -1,111 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4469.2759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4478.6687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 85.9359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 89.3191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 86.4946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 91.5888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 197.4473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 202.2397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 202.6448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 206.2716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 238.8817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 243.6161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 73.4636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 483.9295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 490.2472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 619.505ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 628.9202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 423.7168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 429.6938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 9451.9895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 9459.4145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 41524.6284ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 41532.8135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1264.2166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1269.8319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStud \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105072845_20992.log b/AMESCoreStudio.Web/logs/stdout_20231105072845_20992.log deleted file mode 100644 index 859c3471..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105072845_20992.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4302.2183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4315.2272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 76.5219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 83.7167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 80.3218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 84.8015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 146.1823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 151.824ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 189.3438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 193.8071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 215.4779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 219.6897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105073741_9100.log b/AMESCoreStudio.Web/logs/stdout_20231105073741_9100.log deleted file mode 100644 index 76f91f9b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105073741_9100.log +++ /dev/null @@ -1,131 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3148.2375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3163.3961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 65.1181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 72.2719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 63.067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 69.2295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 158.3062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 168.9216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 202.6107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 208.6117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 214.9766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 218.7003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 109.8746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 116.0175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 966.8884ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 977.7394ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimes2Async(String u, Int32 l, String i) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 609 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 813.8211ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 821.2769ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String UnitType, String ItemNo) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 622 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(Ht \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105074215_32740.log b/AMESCoreStudio.Web/logs/stdout_20231105074215_32740.log deleted file mode 100644 index 6666deb6..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105074215_32740.log +++ /dev/null @@ -1,237 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3184.8178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3197.6363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 85.1559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 89.7414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 69.8796ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 74.3543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 168.8096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.2193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 213.3574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 219.2827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 221.298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 225.7333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.6472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.8538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3150.4913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 3156.4258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1185.9168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1200.0377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 444.3754ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 447.6966ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String UnitType, String ItemNo) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 625 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 96006.965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 96013.2491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 381.5432ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 384.0858ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String UnitType, String ItemNo) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 625 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 51.0423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 55.515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 37.1606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 41.1738ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 103.9032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 108.7411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 139.8492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 144.9124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 185.5971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 190.4387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.3397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.2174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2734.7583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2741.3597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 332.0427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 339.7326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 26240.7425ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 26255.8523ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts. \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105075725_35032.log b/AMESCoreStudio.Web/logs/stdout_20231105075725_35032.log deleted file mode 100644 index 8eb449d5..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105075725_35032.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3137.3946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3150.3361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 69.1259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 75.3202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 63.7528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 71.9915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 149.0032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 154.0893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 189.0271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 193.2545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 229.5144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 235.0002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkCl \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105081403_27096.log b/AMESCoreStudio.Web/logs/stdout_20231105081403_27096.log deleted file mode 100644 index b0a6ffc3..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105081403_27096.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3134.3236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3147.9951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2788.1951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2792.9649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.4221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 71.0656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 61.3101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 69.0815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 167.3915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 172.7347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 188.3167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 193.4808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 224.329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 230.2347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 66.5576ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.6254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 529.19ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 539.259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 388.5778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 399.6224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 887.584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 892.376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 371.2548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 381.1099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 794.9029ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 820.95ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://12 \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105083256_33820.log b/AMESCoreStudio.Web/logs/stdout_20231105083256_33820.log deleted file mode 100644 index ab4eb575..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105083256_33820.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3223.4537ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3237.4938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 74.9148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 82.3544ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 80.0258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 91.5811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 178.2505ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 192.3731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 205.4842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 218.5459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 231.0184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 237.5152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Facto \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105084018_33428.log b/AMESCoreStudio.Web/logs/stdout_20231105084018_33428.log deleted file mode 100644 index 633d352b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105084018_33428.log +++ /dev/null @@ -1,113 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2691.7496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2701.6548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3712.0288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3722.5203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 105.7535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 111.8104ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 131.7165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 142.9664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 274.1588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 280.8604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 277.8049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 283.5355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 343.9204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 349.5658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 123.3132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 132.9744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 885.4754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 891.8422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 701.2075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 708.6814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1285.6718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1290.0478ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 377.8362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 387.5475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 733.5005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 739.1195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105084555_31044.log b/AMESCoreStudio.Web/logs/stdout_20231105084555_31044.log deleted file mode 100644 index ce06b8f6..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105084555_31044.log +++ /dev/null @@ -1,165 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3778.4571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3795.0075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 124.0711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 129.3018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 127.3797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 132.8741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 272.545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 277.2226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 268.1064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 277.5639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 307.5865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 314.668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 137.9519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 145.1392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 907.446ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 912.8986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 342.4174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 348.4076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 378.8723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 388.4297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 107.3565ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 111.3177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 568.4521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 575.2333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/0/0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/0/0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 103.7038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 111.4149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1795.0414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1823.446ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 657.6883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 661.3751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/0/0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/0/0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 115.1366ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 121.1386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2218.0718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2228.2361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1273.2405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1279.7772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/0/0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/0/0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 19703.5806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 19708.0168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2156.9779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105085352_8384.log b/AMESCoreStudio.Web/logs/stdout_20231105085352_8384.log deleted file mode 100644 index fe15af6a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105085352_8384.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3758.5578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3769.0926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 115.5123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 120.0531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 104.0873ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 109.0829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 329.5704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 334.6116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 288.1037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 292.4488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 345.9547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 351.7224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/F \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105090103_11732.log b/AMESCoreStudio.Web/logs/stdout_20231105090103_11732.log deleted file mode 100644 index 2ef97782..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105090103_11732.log +++ /dev/null @@ -1,165 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3517.8268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3533.1254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 81.3728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 87.9758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 93.0517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 98.8436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 313.9504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 320.2713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 282.4234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 287.4895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 346.2859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 353.866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 117.6395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 124.6101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 4565.8661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 4572.1468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 644.0827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 648.6839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1783.0821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1793.4792ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 737.7307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 746.3446ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 307.7302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 312.0398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 99.0532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 106.9931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 104.1297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 110.1521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 684.7953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 690.1732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 976.7291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 982.695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 90.4753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 94.8992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 681.4536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 685.4425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 915.3913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 919.2929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 805.5747ms - OK -info: System.Net.Http.HttpClien \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105090741_30580.log b/AMESCoreStudio.Web/logs/stdout_20231105090741_30580.log deleted file mode 100644 index 5e526b7e..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105090741_30580.log +++ /dev/null @@ -1,585 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5043.3967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5070.1389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 116.4155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 120.7822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 132.9037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 138.3965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 243.8027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 249.2711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 305.7087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 311.6605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 367.5954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 375.6651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 165.1923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 181.0033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.2606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 201.0976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 4562.2703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 4574.8508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 95.8144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 105.8317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/R -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/R -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1150.3794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1160.9958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 817.2064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 826.4554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 376.0546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 391.3018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 748.7958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 761.404ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 78670.0222ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 78678.3072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 78600.0247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 78604.8454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 307.7809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 311.3829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 71002.5867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 71012.0229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 424852.7987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 424861.3652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.5254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 89.6631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 390.0043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 395.521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 133.1205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 138.7563ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups/1001 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups/1001 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 96.934ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 104.9524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 180.3601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 188.8702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 124.8018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 131.0832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 118.3105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 124.9435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 111.8657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 120.5862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/KPLinks?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/KPLinks?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 116.0274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 128.5574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/KPLinks?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/KPLinks?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 84.2472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 89.2125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Items?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Items?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 164.0749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 169.8753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Items?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Items?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 165.5421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 173.8363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 186.6883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 196.6955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes/15 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes/15 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 114.6198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 122.7406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 107.349ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 118.2263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.7754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 92.9285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 955.0351ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 964.8561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 193.6499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 201.6496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 71.0257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 75.3395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/1012 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/1012 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 259.8508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 267.0024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/LineInfoes/1012 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/LineInfoes/1012 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 248.736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 256.3371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 941.3002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 946.0282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 86.8539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 97.0981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 127.0304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 135.7551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 111.3979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 117.671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 82.9909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 87.0674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.2457ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 169.3878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 179.1528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=15&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=15&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 920.3991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 929.4761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 553.9524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 561.1337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAtts/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAtts/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 83.6875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBarcode/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBarcode/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 91.1009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 94.8952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/WipNo/9930001945A?flowRuleIDNew=1066&flowRuleIDOld=0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/WipNo/9930001945A?flowRuleIDNew=1066&flowRuleIDOld=0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 189.7945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 198.9229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBoard/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBoard/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 112.2464ms - NoContent -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 121.7691ms - NoContent -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipSystem/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipSystem/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 171.6506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 179.651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipMAC/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipMAC/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 47.5256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 56.1857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipLabel/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipLabel/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 79.6174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 87.1141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBarcodeOther/WipNos/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBarcodeOther/WipNos/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 475.3224ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 478.9767ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.PCSController.PCS001R(Int32 id) in D:\安勤\AMESCoreStudio.Web\Controllers\PCSController.cs:line 2461 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 66.3645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.5951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 93.6269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 107.7464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 1677.756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 1686.4152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 148.138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 155.2731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionForms -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionForms -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 590.6025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 595.5376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.9838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.2929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProductTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProductTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 104.179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 109.759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/TestTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/TestTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 135.4589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 143.1289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 84.7895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 93.2811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 1076.8516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 1082.9653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 776.1103ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 780.5868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/NgRepairs/GetRepairData4REP012?productType=&testType=&unitNo=&lineID=&stationID=&wipNo=&itemNo=&dateStart=&dateEnd=&modelNo=&itemPN=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/NgRepairs/GetRepairData4REP012?productType=&testType=&unitNo=&lineID=&stationID=&wipNo=&itemNo=&dateStart=&dateEnd=&modelNo=&itemPN=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 2416.2469ms - OK -info: Syste \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105094702_8208.log b/AMESCoreStudio.Web/logs/stdout_20231105094702_8208.log deleted file mode 100644 index 38f1f460..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105094702_8208.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3042.9658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3055.9521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 66.7487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.9375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 67.8457ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 75.4888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 158.7123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 164.8947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 194.4459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 203.1782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 217.5515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 224.1482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Facto \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105094822_5344.log b/AMESCoreStudio.Web/logs/stdout_20231105094822_5344.log deleted file mode 100644 index 0d71d5db..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105094822_5344.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3112.9413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3127.7492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.0389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 67.7049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 71.109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 78.922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 154.157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 160.4869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 201.7976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 213.3727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 220.442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 224.4131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUn \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105095222_34676.log b/AMESCoreStudio.Web/logs/stdout_20231105095222_34676.log deleted file mode 100644 index d757db51..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105095222_34676.log +++ /dev/null @@ -1,459 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3121.8729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3136.1386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 69.8057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 75.9577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.5949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 78.6898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 171.0363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 180.9899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 189.1427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 197.7583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 223.4989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 227.7042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 73.909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.1558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 504.1006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 512.1734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 77.0872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 80.1541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 323.191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.259ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.6ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.5243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 340.2727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 346.2239ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 90.5029ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 100.5368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 327.1719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.1194ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.5711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 331.7281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 335.583ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.1412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.3619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 302.8471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 310.483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 49512.2448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 49520.0437ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.1552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.9498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 314.0597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 320.4177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 8613.4957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 8618.5422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.2569ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.7792ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 319.5456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 326.4145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.5958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.0038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 336.3356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTT \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105102429_14440.log b/AMESCoreStudio.Web/logs/stdout_20231105102429_14440.log deleted file mode 100644 index 78a2ade6..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105102429_14440.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3066.0778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3077.4152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 70.6383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 77.7957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 60.5622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 68.8659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 148.1542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 152.7049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 185.0894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 188.815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 223.7778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 230.5942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105102957_32256.log b/AMESCoreStudio.Web/logs/stdout_20231105102957_32256.log deleted file mode 100644 index cb7b82e5..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105102957_32256.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3165.4601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3179.1718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 73.9203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 80.1085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 60.5334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 67.7794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 149.0119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 157.9549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 206.892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 214.5797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 230.1871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 240.6469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105132250_27980.log b/AMESCoreStudio.Web/logs/stdout_20231105132250_27980.log deleted file mode 100644 index 73c372be..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105132250_27980.log +++ /dev/null @@ -1,1965 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3045.032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3054.3949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 58.0408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 61.8659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 61.7748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 65.4635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.9935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 149.0063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 198.1395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 204.3002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 217.397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 222.2364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 66.2667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.9856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 78.1884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 84.0257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS017?wipNO= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS017?wipNO= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 391.0462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 399.3862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.1577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.9904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 828.8316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 841.5598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS017?wipNO=104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS017?wipNO=104287101A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 416.176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 422.3516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 57.7109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 64.9035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 60.1886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 66.9136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.5603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 71.9178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 94.4963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 100.0809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=15&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=15&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 443.4344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 453.6341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/1273 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 400.8871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 410.9685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAtts/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAtts/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 62.9827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 67.7706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBarcode/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBarcode/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 71.5894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 79.9884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/WipNo/9930001945A?flowRuleIDNew=1066&flowRuleIDOld=0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/WipNo/9930001945A?flowRuleIDNew=1066&flowRuleIDOld=0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 118.6604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 130.5605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBoard/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBoard/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 55.0993ms - NoContent -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 65.2249ms - NoContent -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipSystem/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipSystem/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 119.8608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 126.1836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipMAC/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipMAC/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 71.2163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 78.5712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipLabel/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipLabel/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 112.1554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 118.4893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBarcodeOther/WipNos/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBarcodeOther/WipNos/9930001945A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 423.7341ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 428.4781ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.PCSController.PCS001R(Int32 id) in D:\安勤\AMESCoreStudio.Web\Controllers\PCSController.cs:line 2461 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.9332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.7316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/Unit/0/Str/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/Unit/0/Str/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 222.4559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 226.5914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.0045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.3973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/Unit/S/Str/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/Unit/S/Str/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 110.9587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 124.5673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 365.9983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 376.9718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 502.5644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 512.8356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.2955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.6212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Items -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Items -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 84.0488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 93.3388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 446.006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 453.5747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/BarcodeItems/PCS024 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/BarcodeItems/PCS024 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 523.267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 530.6839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/Unit/S/Str/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/Unit/S/Str/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 449.2662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 455.5236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/Unit/0/Str/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/Unit/0/Str/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 396.6965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 404.9585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Items -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Items -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 72.9178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 84.9249ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/1756 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/1756 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 433.3405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 440.9116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.4299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.7976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 83.749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 92.0291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 482.4743ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 489.3175ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 83.8984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 93.2381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes/15 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes/15 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.9858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.3976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=15&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=15&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 638.0332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 654.7039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 78.7966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 87.4684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcQuery/QWO0005A5?seqid=2 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcQuery/QWO0005A5?seqid=2 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 690.2695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 703.9045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/QcItem/QcItemQuery?groupID=0&page=0&limit=0&itemNo=&wipNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/QcItem/QcItemQuery?groupID=0&page=0&limit=0&itemNo=&wipNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 340.2007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 345.9936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipFqcItem/ByWipNo/WO0005A5 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipFqcItem/ByWipNo/WO0005A5 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 56.385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 64.587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MaterialFqcItem/ByitemNo/MTNO001-TEST -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MaterialFqcItem/ByitemNo/MTNO001-TEST -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 191.2979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 199.0208ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseDetail/FqcInhouseDetailByFQC007All?inhouseNo=QWO0005A5&seqID=2 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseDetail/FqcInhouseDetailByFQC007All?inhouseNo=QWO0005A5&seqID=2 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 45.3469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 51.0904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/QcItem/QcItemQuery?groupID=0&page=0&limit=0&itemNo=MTNO001-TEST&wipNo=WO0005A5 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/QcItem/QcItemQuery?groupID=0&page=0&limit=0&itemNo=MTNO001-TEST&wipNo=WO0005A5 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 1027.7373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 1044.432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcQuery/QWO0005A5?seqid=2 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcQuery/QWO0005A5?seqid=2 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 261.7863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 269.639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/QcItem/QcItemQuery?groupID=0&page=0&limit=0&itemNo=&wipNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/QcItem/QcItemQuery?groupID=0&page=0&limit=0&itemNo=&wipNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 148.571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 157.2118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipFqcItem/ByWipNo/WO0005A5 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipFqcItem/ByWipNo/WO0005A5 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 32.7717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 40.5227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MaterialFqcItem/ByitemNo/MTNO001-TEST -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MaterialFqcItem/ByitemNo/MTNO001-TEST -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 83.9172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 98.1412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseDetail/FqcInhouseDetailByFQC007All?inhouseNo=QWO0005A5&seqID=2 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseDetail/FqcInhouseDetailByFQC007All?inhouseNo=QWO0005A5&seqID=2 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 38.4515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 50.5574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 83.8336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.3085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 85.5324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 96.7928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=&factoryNo=15 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=&factoryNo=15 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 186.1328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 193.8928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.8227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 71.8772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 102.7909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 113.2769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.6589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/GetUserData?id=6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 81.7555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 91.4961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=15&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=15&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 322.909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 334.0173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 47.1817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 56.882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 46.3788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 51.056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 62.3854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 68.4797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 53.1614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 66.2504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionForms/Query/1001/Y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionForms/Query/1001/Y -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 383.4265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 400.171ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 43.2684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 51.4832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.511ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.9587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 45.2006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 56.3087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionForms/1030 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionForms/1030 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 87.3086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 97.8305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/IPQCTaskNotice/ByQuery/?wipNo=&itemNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/IPQCTaskNotice/ByQuery/?wipNo=&itemNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 469.1027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 480.7442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 42.643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 53.0469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionForms -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionForms -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 304.8509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 313.28ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 44.9348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 56.1162ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionForms -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionForms -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 325.9064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 339.1063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 45.3536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 57.6582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionForms -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionForms -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 300.8242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 312.8642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 41.6451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 50.4614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/InspectionItems/Form/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/InspectionItems/Form/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.ClientHandler[101] - Received HTTP response after 111.9562ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISPC.LogicalHandler[101] - End processing HTTP request after 123.0984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=T&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=T&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 209.8581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 219.1114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVC0103%2C1006 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVC0103%2C1006 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 98.8842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 107.3494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1004?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1004?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 321.6266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 334.7127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1010 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1010 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 150.4876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 169.2523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1012 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1012 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 66.2195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.5428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 64.6184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 71.2836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 68.1285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 79.1381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1010&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1010&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 182.9291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 197.5846ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1012&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1012&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 75.785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 86.1658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 63.7188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 74.3588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 107.3419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 120.1097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.0055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.5393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=T&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=T&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 825.243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 842.5506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStatus -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStatus -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 108.2234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 125.9385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/WipID/30595 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/WipID/30595 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 54.6252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 73.7ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipLog/30595 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipLog/30595 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 117.1445ms - NoContent -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 132.0998ms - NoContent -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AMESCoreStudio.Web.Controllers.PCSController.PCS006QueryAsync(String unitNo, String wipNo, String factoryNo, Int32 page, Int32 limit) - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 73.0631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.7631ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 257.6926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 268.1385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.7542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.2094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Items?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Items?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 67.193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 81.6783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=B&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=B&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 102.6993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 109.4746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 66.0953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 78.3467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 723.3762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 732.1776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 110.6632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 121.2033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 83.8092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 96.7599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 87.4094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 97.6955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 90.7303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 102.8466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 90.6338ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 99.8629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 75.2855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 89.8886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 85.0499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 92.3971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 88.8203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 98.364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 75.4051ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 87.4019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 74.1635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 88.7906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 78.2722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 92.6433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 84.7845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 96.2774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 81.6994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 94.1454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.0587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 93.4823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 88.1076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 103.4214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 95.8113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 113.7744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 76.2845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 85.5809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 70.452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 77.409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 71.0929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.2535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 75.6818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 88.2663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 89.3606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 102.5747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 168.2939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 175.8911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 58.2556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 70.7043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1041?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1041?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 328.7458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 337.1208ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1007 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1007 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 104.6452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 109.6777ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1050 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1050 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 76.6413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 88.2901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1023 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1023 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 90.9275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 103.3168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1053 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1053 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 80.3469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 89.979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 127.6122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 139.2237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 110.4627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 125.2255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1007&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1007&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 121.2811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 137.0157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1050&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1050&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 98.1939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 121.6535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1023&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1023&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 108.2227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 120.5883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1053&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1053&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 89.918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 102.3719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 70.7494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 76.2018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 71.3432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 84.3005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/No/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 315.157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 331.5881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeStation/BarCodeID/3529 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeStation/BarCodeID/3529 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 311.1519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 323.8232ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 208.6426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 216.6341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/ByBarCodeIDPCS009?barcodeID=3529 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeItems/ByBarCodeIDPCS009?barcodeID=3529 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 195.3754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 207.1494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeOutfit/ByBarcodeNo/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeOutfit/ByBarcodeNo/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 89.3189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 110.5483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeItemChanges/ByBarCodeIDPCS009/3529 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeItemChanges/ByBarCodeIDPCS009/3529 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 221.6106ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 235.1839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/NgInfo/BarcodeNoFromPCS009/3529 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/NgInfo/BarcodeNoFromPCS009/3529 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 303.5042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 312.7887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeChange/ByBarcodeID/3529 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeChange/ByBarcodeID/3529 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 105.9831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 112.5394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/TestLog/ByMSSql/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/TestLog/ByMSSql/WO0005A5003407 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.7745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 66.9039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.4423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 14975.5897ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 14979.3677ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 80.5624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 123.0242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 80.7801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 128.3117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.PCSController.PCS009R(PCS009ViewModel model) in D:\安勤\AMESCoreStudio.Web\Controllers\PCSController.cs:line 4703 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 483.3494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 518.3978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 364.6954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 375.7435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 57.3816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 73.026ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 182.655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 195.3245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 88.3699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 98.9132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 46.392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 62.4885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 89.685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 96.1015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/PartMaps?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 71.5234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 84.136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.3279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.7761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo=N -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo=N -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 1238.9195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 1250.7385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.2704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.6134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.1237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 1083.7794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 1092.1774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.7592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=R&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=&lineid=0&itemno=&date_str=&date_end=&wipType=R&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 1686.5986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 1696.2161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ErrorGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ErrorGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 141.7695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 151.9954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ErrorClasses/Group/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ErrorClasses/Group/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 128.8458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 137.9563ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ErrorReasons/Class/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ErrorReasons/Class/%2A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 115.4757ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 122.5248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/NGGroups?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/NGGroups?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 171.0854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 178.883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/NGClasses/Group/?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/NGClasses/Group/?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 135.3533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 141.1866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/NGReasons/Class/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/NGReasons/Class/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 310.8032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 320.0959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/NGClasses/Group/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/NGClasses/Group/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 130.1996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 137.1485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RepairResponsibleUnitses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RepairResponsibleUnitses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.7866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 102.7523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/NGReasons/A018 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/NGReasons/A018 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 101.707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 110.1523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RMAGroups?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RMAGroups?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 124.1979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 135.1749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RMAGroups?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RMAGroups?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 82.7676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 91.1539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RMAGroups?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RMAGroups?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 47.5669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 58.3927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RMAClasses/Group/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RMAClasses/Group/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 122.7258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 132.071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RMAClasses/Group/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RMAClasses/Group/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 121.7846ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 133.1951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RMAGroups?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RMAGroups?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 53.2471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 63.6703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RMAClasses/Group/?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RMAClasses/Group/?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 82.2589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 93.0159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RMAReasons/GetRMAReasonByGroupClass?groupNo=%2A&classNo=%2A&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RMAReasons/GetRMAReasonByGroupClass?groupNo=%2A&classNo=%2A&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 323.3016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 331.439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RepairTypes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RepairTypes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 86.855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 101.6526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RepairTypes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RepairTypes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 69.8758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 83.5258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RepairItems?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RepairItems?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 104.7711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 112.1723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RepairItems?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RepairItems?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 89.153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 99.9276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/QATypes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/QATypes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 127.2608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 135.8845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/QATypes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/QATypes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 65.8728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 75.6628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 117.5579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 123.8865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Rules/Flow/0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Rules/Flow/0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 112.1019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 125.8703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 78.1199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 87.6263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 121.477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 131.2974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StationTypes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StationTypes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 115.7955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 123.1889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StationTypes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StationTypes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.7731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.3517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.5397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 100.954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 108.8134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32919.3408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32925.1646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Rules/Flow/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Rules/Flow/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.3746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ProcessTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.8724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.1031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/1002 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/1002 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.2005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.1882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 1582.1938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 1594.1485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.1662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.4862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 632.6327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 645.1262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StationTypes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StationTypes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.3285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.2925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.6705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.1317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/TestTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/TestTypes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.1105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.8805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 124.3327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 130.6266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/TimeSegments -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/TimeSegments -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 109.3789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 119.0021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.7663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.6685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ClassInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/ClassInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 488.6152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 500.9417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.5567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.2881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 534.655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 544.7605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 103.0755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 118.6756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.3183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.4198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.2505ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.6822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 457.2654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 468.1521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.0112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.0915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.1332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.3974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules/Unit/%2A?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 68.5893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.3032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.1916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.5866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 94.2767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 106.261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow2/_0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow2/_0?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12995.4086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 13001.8839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow2/_0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow2/_0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 793.8897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 800.9438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 75.3138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 80.1975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 135.003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.0677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 97.274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 112.7331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/0?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 432.6642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 446.1363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.65ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 122.5001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SystemInfoes?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IS \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105134552_23036.log b/AMESCoreStudio.Web/logs/stdout_20231105134552_23036.log deleted file mode 100644 index 787ad3bc..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105134552_23036.log +++ /dev/null @@ -1,89 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4283.7542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4298.9818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 97.5965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 104.5438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.9298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 78.637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 162.7721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 166.5212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 192.1558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 198.3671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 241.0694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 246.1778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 100.9877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 110.361ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: There is no ViewData item of type 'IEnumerable' that has the key 'TotalCT'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.DefaultHtmlGenerator.GetSelectListItems(ViewContext viewContext, String expression) - at Microsoft.AspNetCore.Mvc.ViewFeatures.DefaultHtmlGenerator.GenerateSelect(ViewContext viewContext, ModelExplorer modelExplorer, String optionLabel, String expression, IEnumerable`1 selectList, ICollection`1 currentValues, Boolean allowMultiple, Object htmlAttributes) - at Microsoft.AspNetCore.Mvc.ViewFeatures.DefaultHtmlGenerator.GenerateSelect(ViewContext viewContext, ModelExplorer modelExplorer, String optionLabel, String expression, IEnumerable`1 selectList, Boolean allowMultiple, Object htmlAttributes) - at Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelper.GenerateDropDown(ModelExplorer modelExplorer, String expression, IEnumerable`1 selectList, String optionLabel, Object htmlAttributes) - at Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelper`1.DropDownListFor[TResult](Expression`1 expression, IEnumerable`1 selectList, String optionLabel, Object htmlAttributes) - at Microsoft.AspNetCore.Mvc.Rendering.HtmlHelperSelectExtensions.DropDownListFor[TModel,TResult](IHtmlHelper`1 htmlHelper, Expression`1 expression, IEnumerable`1 selectList, Object htmlAttributes) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 89 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaite \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105134833_27740.log b/AMESCoreStudio.Web/logs/stdout_20231105134833_27740.log deleted file mode 100644 index 0871200e..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105134833_27740.log +++ /dev/null @@ -1,1374 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3079.9434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3092.2237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 68.9946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.0798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 60.0016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 64.6467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.8109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 170.9112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 195.1917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 199.9341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 218.8867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 222.8549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 108.6449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 116.0415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.5046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.1491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 477.0083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 487.937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.0147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.5328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.2728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.5191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 339.5885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 354.0859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.2937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.873ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 352.9754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 360.8554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.2705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.5863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 362.5443ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 368.9135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 353.4314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 361.5624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.2933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.7932ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.2695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 339.3294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 340.3776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.1045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 152.3265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 163.6025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.83ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 339.4834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.1421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.8926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.4108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.2535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.2222ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.7994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.9227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.9548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 339.3363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.2126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 62.2543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.0303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 234.4407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 243.5103ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 63.2382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 71.9905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 568.3587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 581.6713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 85.2139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 94.365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 76.9677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 93.224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 69.8838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 77.7496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.9168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 95.6999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 81.2767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 97.382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 92.4208ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 99.6537ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 74.2432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 84.3192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.9848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.4213ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 78.6119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 91.7892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 71.6757ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.7273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 81.343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 91.0834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 91.6086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 102.8547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 62.5235ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 69.9528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 72.2545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 81.7179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 63.5865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 68.1906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 74.7786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 84.4634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 75.6064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 82.0086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 76.9772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 86.4413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 71.677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 81.3145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 65.2967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 76.6531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 87.1846ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 101.0487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.4837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 86.0794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVT0128%2C1018 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVT0128%2C1018 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 44.5127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 53.1394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1068?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1068?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 197.974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 203.8843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31077&stationID=1014 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31077&stationID=1014 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 66.52ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 74.9546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31077&stationID=1015 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31077&stationID=1015 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 61.7481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 71.3334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31077&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31077&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 67.4328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 75.0177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31077&stationID=1014&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31077&stationID=1014&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 71.4481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 79.6987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31077&stationID=1015&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31077&stationID=1015&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 74.817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 82.1907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31077&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31077&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 61.9036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 73.3693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVM2105%2C1003 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVM2105%2C1003 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 36.8408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 47.4207ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 277.9412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 284.8648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.7291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 90.4601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 85.0794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.2319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 78.8083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 69.7822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 73.8542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 78.7395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.4011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 88.9626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 75.6156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 79.8263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 67.8172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 77.166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 64.6027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 72.5684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 68.4882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 74.8091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 65.1812ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 73.8391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 68.4473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 75.4792ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1004 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1004 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 36.6306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 44.3569ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 282.6959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 291.4619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 63.5716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 70.4915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 63.1287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 71.7122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 63.7342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 71.4969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 70.5988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 82.6076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 70.5879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 79.8565ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 87.398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 93.8477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 99.1285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 104.6571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 83.1098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 70.5966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 81.2053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 68.0753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 79.4356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.8536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 89.8013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 76.701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 91.4269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVC0103%2C1006 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVC0103%2C1006 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 43.3421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 51.1346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1004?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1004?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 275.8791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 287.9037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1010 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1010 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 69.8497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 75.0869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1012 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1012 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 76.2324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 83.4522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 67.8169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 72.9595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1084&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 61.3128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 65.7135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1010&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1010&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.1371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.2941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1012&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1012&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 69.2237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 70.9252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 76.1896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1084&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.8458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 83.7237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/SIM0086C%2C1009 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/SIM0086C%2C1009 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 36.8429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 46.287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1065?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1065?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 206.6769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 215.3623ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1076&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1076&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 75.8061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 87.2857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1076&stationID=1015 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1076&stationID=1015 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 91.7886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1076&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1076&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 68.4596ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 79.3287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1076&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1076&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 79.9562ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 88.2417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1076&stationID=1015&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1076&stationID=1015&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 85.7751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 95.459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1076&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1076&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.2975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 84.9149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVT0128%2C1015 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVT0128%2C1015 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 38.3677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 46.998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1067?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1067?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 318.902ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 329.3553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1302&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1302&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 71.347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.8757ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1302&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1302&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 66.1694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 72.5732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1302&stationID=1014 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1302&stationID=1014 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 70.8562ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.1451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1302&stationID=1015 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1302&stationID=1015 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 66.1735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 70.8941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1302&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1302&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 69.4746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 74.5281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1302&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1302&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 65.4773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 75.9336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1302&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1302&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 62.2998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 67.9599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1302&stationID=1014&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1302&stationID=1014&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 62.2859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 68.0795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1302&stationID=1015&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1302&stationID=1015&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 67.608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 79.9165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1302&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1302&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.6884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 92.4851ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/ASM0032%2C1010 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/ASM0032%2C1010 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 38.2395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 51.0856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1140?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1140?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 373.0488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 381.3054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=111061 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=111061 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 65.0744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 75.2027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=111135 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=111135 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 76.8103ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 85.7951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=111064 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=111064 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 75.1184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 84.789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=111062 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=111062 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 67.6107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 77.5073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=111067 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=111067 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.5201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 85.7363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=3818&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 66.2515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 75.3564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=111061&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=111061&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.0888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 87.0512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=111135&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=111135&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 68.1887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 79.6091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=111064&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=111064&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.7061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 86.979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=111062&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=111062&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 70.363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 81.5506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=111067&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=111067&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 70.5127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 78.1782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=3818&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 71.5039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.3532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVC0123%2C100 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVC0123%2C100 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 37.3135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 47.5259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1102?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1102?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 224.8114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 236.9948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=102&stationID=1130 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=102&stationID=1130 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.8687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 85.0182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=102&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=102&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.7675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 85.2356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=102&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=102&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 67.7644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 78.2189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=102&stationID=1130&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=102&stationID=1130&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 65.0583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 78.2243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=102&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=102&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 83.0281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 93.5528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=102&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=102&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 66.9099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 79.1086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 38.8386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 51.462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1041?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1041?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 303.1414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 312.9772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1007 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1007 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.5287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 84.1958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1050 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1050 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 75.2475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 82.5737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1023 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1023 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 72.112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 77.7218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1053 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1053 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 92.9965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 97.368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 72.0573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 75.2134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 78.9573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 83.7296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1007&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1007&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 68.3987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 74.9905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1050&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1050&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 72.8118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.1997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1023&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1023&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 75.8748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.2353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1053&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1053&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 87.4358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 96.5019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 69.9269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 70.1945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 77.8069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=9930001844&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=9930001844&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 408.8109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 414.646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 473.0252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 479.7818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 80.1636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 94.6089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/1153 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/1153 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 326.9189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 332.9843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAtts/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAtts/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 43.9299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 51.3255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBarcode/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBarcode/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 63.8434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 71.0806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 19835.1915ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 19840.4112ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.FQCController.GetFactoryInfo() in D:\安勤\AMESCoreStudio.Web\Controllers\FQCController.cs:line 187 - at AMESCoreStudio.Web.Controllers.FQCController.FQC008(String id) in D:\安勤\AMESCoreStudio.Web\Controllers\FQCController.cs:line 1788 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.Develope \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105155134_10800.log b/AMESCoreStudio.Web/logs/stdout_20231105155134_10800.log deleted file mode 100644 index 19d36781..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105155134_10800.log +++ /dev/null @@ -1,264 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3093.1413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3105.0654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 60.1205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 63.5957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 61.8786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 67.0709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 169.9759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 176.7786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 190.1536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 194.1724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 210.7436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 215.2035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.1577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 80.4053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 595.8719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 607.5817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 326.6811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 332.5185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 139.1587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 144.8158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 304.2081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 308.6899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.2303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 339.6383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 110.9378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 114.4635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 314.1755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 321.6327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.3707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.0133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 355.4687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 361.4965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.9109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.4409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 324.8928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 332.3636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 549.2803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 555.7682ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.8172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.3383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.9339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 318.0994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 329.6679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 333.5217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 88.0684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 92.804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=9930001844&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=9930001844&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 292.1224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 296.1885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 843.1654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 852.1408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 184.4736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 193.1344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/1153 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/1153 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 497.0931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 500.8957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAtts/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAtts/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 54.4216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 58.9546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBarcode/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBarcode/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 62.6197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 68.9411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.2384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.9674ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 57 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceIn \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105161521_10008.log b/AMESCoreStudio.Web/logs/stdout_20231105161521_10008.log deleted file mode 100644 index 7cef3316..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105161521_10008.log +++ /dev/null @@ -1,306 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3076.1251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3085.5928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 69.2694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 62.6716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 66.6967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.5887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.7978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 174.2491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 178.4518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 207.9585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 213.694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.8204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.9341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=9930001844&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfoSelectParameter?unitno=&wipno=9930001844&lineid=0&itemno=&date_str=&date_end=&wipType=&factoryno=&page=1&limit=10&statusNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 244.8516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 252.3394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 502.1495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 515.805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 81.9509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 89.2366ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/1153 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/1153 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 312.8788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 320.7072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipAtts/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipAtts/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 43.9377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 50.1817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipBarcode/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipBarcode/9930001844 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 56.514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 60.6087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.5238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.8512ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 57 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.6751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.4457ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 429.0057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 460.3224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 681.2847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 688.4132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 371.0345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 381.7967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 133.591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 150.6327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 329.0439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.9958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 357.2719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 365.6147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 109.2507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 117.9214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 287.5509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 296.2715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 283.8413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 289.4242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 110.7622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 121.307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 301.1819ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 307.4937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 347.6903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 352.6913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 113.6128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 119.9455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 306.2543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 312.639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 304.5181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 312.8007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 107.7965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 117.5128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 295.7549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 300.3927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 292.0524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 302.8175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS. \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105163557_32584.log b/AMESCoreStudio.Web/logs/stdout_20231105163557_32584.log deleted file mode 100644 index aba7da98..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105163557_32584.log +++ /dev/null @@ -1,130 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3085.6461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3095.5834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 65.6186ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 69.5632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 61.7602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 72.1864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 142.346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.6452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 182.9515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 187.5336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 206.5677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 211.5391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.5723ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 58 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.9631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.1951ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.CompilationFailedException: One or more compilation failures occurred: -D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml(80,125): error CS0122: 'i' 由於其保護層級之故,所以無法存取。 -D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml(84,125): error CS0122: 'i' 由於其保護層級之故,所以無法存取。 - at Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.RuntimeViewCompiler.CompileAndEmit(RazorCodeDocument codeDocument, String generatedCode) - at Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.RuntimeViewCompiler.CompileAndEmit(String relativePath) - at Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.RuntimeViewCompiler.OnCacheMiss(String normalizedPath) ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Razor.Compilation.DefaultRazorPageFactoryProvider.CreateFactory(String relativePath) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.CreateCacheResult(HashSet`1 expirationTokens, String relativePath, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.OnCacheMiss(ViewLocationExpanderContext expanderContext, ViewLocationCacheKey cacheKey) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.LocatePageFromViewLocations(ActionContext actionContext, String pageName, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.FindView(ActionContext context, String viewName, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine.FindView(ActionContext context, String viewName, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.FindView(ActionContext actionContext, ViewResult viewResult) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.Sessi \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105164108_18280.log b/AMESCoreStudio.Web/logs/stdout_20231105164108_18280.log deleted file mode 100644 index caeed193..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105164108_18280.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3123.4181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3133.5414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 69.893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.5645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 70.8764ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 75.6314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 151.3649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 157.0399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 188.8177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 196.2706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 204.6012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 209.1723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105164736_30092.log b/AMESCoreStudio.Web/logs/stdout_20231105164736_30092.log deleted file mode 100644 index b93d8947..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105164736_30092.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3108.431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3117.6289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 72.5415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 76.5713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 63.556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 67.3749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 163.6567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 167.6089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 182.0784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 186.353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 211.108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 215.1924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasse \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105165432_25964.log b/AMESCoreStudio.Web/logs/stdout_20231105165432_25964.log deleted file mode 100644 index 7f0f92fc..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105165432_25964.log +++ /dev/null @@ -1,93 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3088.1841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3096.8083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 64.8498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 69.6828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 68.8238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 73.8118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.4486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 172.5142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 198.2901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 202.6541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 215.256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 220.9199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 84.5771ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 90.2107ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Mi \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105165951_22144.log b/AMESCoreStudio.Web/logs/stdout_20231105165951_22144.log deleted file mode 100644 index 5c51ea81..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105165951_22144.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3112.9534ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3124.3302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 69.2155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.6805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.4045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 79.2585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 157.8013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 163.1387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 189.062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 194.7038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 215.2336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 219.6252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105170213_21164.log b/AMESCoreStudio.Web/logs/stdout_20231105170213_21164.log deleted file mode 100644 index 71e7ece7..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105170213_21164.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3070.047ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3081.796ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 60.2838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 63.3978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 63.5137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 66.7567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 145.7245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 151.1037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 244.6386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 248.7358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 211.496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 215.3532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryU \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105170502_24204.log b/AMESCoreStudio.Web/logs/stdout_20231105170502_24204.log deleted file mode 100644 index 402cb54a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105170502_24204.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3194.591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3203.0522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 66.5314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 69.5942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 61.1334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 64.4647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 158.6199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 162.539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 190.5275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 195.8416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 183.8614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 188.6913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factory \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105171150_35476.log b/AMESCoreStudio.Web/logs/stdout_20231105171150_35476.log deleted file mode 100644 index 855aa20c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105171150_35476.log +++ /dev/null @@ -1,113 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3268.5857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3277.7968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 72.597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 77.7501ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 96.8777ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 102.2636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 148.3783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 157.5011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 189.5261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 196.4157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 197.8433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 203.2039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 67.0465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 71.9088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Null -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Null -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 263.584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 274.6368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 32.013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 39.4854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 85.4491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 94.6473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 184.8371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 189.3123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.3157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 166.2346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.8039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105171339_8308.log b/AMESCoreStudio.Web/logs/stdout_20231105171339_8308.log deleted file mode 100644 index 8dbdf102..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105171339_8308.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3090.1197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3098.8568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 56.9579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 60.9893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 68.5383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 72.1296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 150.9803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 157.8249ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 167.1739ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 173.8211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 187.1379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 192.7502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Facto \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105171449_17512.log b/AMESCoreStudio.Web/logs/stdout_20231105171449_17512.log deleted file mode 100644 index 78a5ec05..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105171449_17512.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3269.1396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3277.4354ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 88.6625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 91.9659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 123.031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.3754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 213.3416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 218.9575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 202.3016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 209.4583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 265.2334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 270.8596ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Fact \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105171609_24836.log b/AMESCoreStudio.Web/logs/stdout_20231105171609_24836.log deleted file mode 100644 index 305b5cc8..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105171609_24836.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3901.7241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3911.7695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 197.9002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 201.6573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 111.2269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 117.2046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 508.2492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 513.4275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 279.947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 285.3193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 230.3844ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 235.0829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Fa \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105171806_26920.log b/AMESCoreStudio.Web/logs/stdout_20231105171806_26920.log deleted file mode 100644 index 4bdae210..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105171806_26920.log +++ /dev/null @@ -1,163 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3326.2724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3335.896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 62.998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 66.844ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 61.3835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 65.4926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 155.5617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 160.6829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 199.5317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 203.5344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 216.4191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 220.19ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 71.3251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 75.5284ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Null -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Null -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3327.6979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 3331.9798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2914.0309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2921.6788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 5049.5438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5057.9663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 6162.9941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 6165.974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.2328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 187.6627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 396.8433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 406.5339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 448.8284ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 456.7049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 124.8463ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.4735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 324.2515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 330.1699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 379.723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 386.3419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 124.2364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.9997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 423.594ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 430.0853ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS. \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105175747_23920.log b/AMESCoreStudio.Web/logs/stdout_20231105175747_23920.log deleted file mode 100644 index c24ca970..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105175747_23920.log +++ /dev/null @@ -1,199 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4617.2658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4626.5622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 101.6772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 110.7501ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 100.6903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 106.7609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 163.7907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 166.3162ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 196.8897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 205.4658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 212.7484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 218.1018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 85.9537ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 89.9104ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 638.5896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 636.9962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 642.5422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 645.3882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 5217.688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5228.4783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 392.5331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 399.9007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 145.8487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 155.9191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 339.1915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.4864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 363.7231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 353.9772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 359.0088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 370.6803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.6097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.9266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.8798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.1367ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 364.0464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 378.132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 374.2533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 386.7317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231105180311_33948.log b/AMESCoreStudio.Web/logs/stdout_20231105180311_33948.log deleted file mode 100644 index 27aaa079..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231105180311_33948.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2949.4807ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2958.1689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 316.6982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 322.3126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 61.0542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 65.575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 56.4464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 63.5285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 163.0989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 168.7744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 201.2597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 209.714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&l \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231106014541_46896.log b/AMESCoreStudio.Web/logs/stdout_20231106014541_46896.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231106014801_17600.log b/AMESCoreStudio.Web/logs/stdout_20231106014801_17600.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231106034153_16064.log b/AMESCoreStudio.Web/logs/stdout_20231106034153_16064.log deleted file mode 100644 index dc59c485..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231106034153_16064.log +++ /dev/null @@ -1,113 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3718.0406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3728.4672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 61.8768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 65.0265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 58.9249ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 62.6078ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 113.2754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 116.6251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.0739ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.7841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 170.607ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.8526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.7014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.1007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 84.0005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 88.4456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 139.8601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 142.7094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 387.2787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.0145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 390.6322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 215.5345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 192.479ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.3883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 175.9278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 180.2352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -inf \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231106035254_34908.log b/AMESCoreStudio.Web/logs/stdout_20231106035254_34908.log deleted file mode 100644 index 8ed7e17f..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231106035254_34908.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3364.9142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3373.5281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 58.9409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 62.4617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 55.4733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 58.4996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 106.3366ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 109.5215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.7617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.4358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 192.8129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 195.8039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.4623ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.5727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.0442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.5265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.0072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 354.9772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.0977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 316.4039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 359.1068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 188.4831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 191.6132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 148.562ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 151.8705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231106035655_44376.log b/AMESCoreStudio.Web/logs/stdout_20231106035655_44376.log deleted file mode 100644 index 149bfc45..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231106035655_44376.log +++ /dev/null @@ -1,202 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2805.8339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2814.7391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 60.367ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 63.4758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 59.3272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 62.3164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 123.1191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 126.179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 156.263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 159.593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 163.7942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 166.4623ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.4772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 192.5818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.3634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.9961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 5037.3556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 5042.4059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 23258.6373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 23263.9785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 18129.0919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 18135.5979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 11785.435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 11788.6109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 2147.7246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 2151.3839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 43198.7709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 43201.2412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 41084.1267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 41086.4525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2774.0406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2777.3066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19697.8241ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19700.2974ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 72 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003(String unitNo, Int32 lineID, String modelname) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 497 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 189.6453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 192.1999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 6661.8967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 6665.3725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 6679.8689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 6682.9137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1258.7914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS. \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231106051140_33808.log b/AMESCoreStudio.Web/logs/stdout_20231106051140_33808.log deleted file mode 100644 index 607b95a0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231106051140_33808.log +++ /dev/null @@ -1,1213 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3391.4496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3400.4591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 55.2455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 57.8352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 49.2187ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 53.0966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 93.0049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 96.0548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.9958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.9695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 157.3116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 160.233ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 39.4612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 43.5253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.0836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.4138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.4448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.7348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.8883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 298.603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 341.8161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 303.2723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 180.9971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 184.6057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.7497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.1177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.2396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 200.019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 164.058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.9155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 166.6358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 192.9767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 196.0022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.7348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.6101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.2331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.3528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 116.923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 120.1608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 136.2458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 139.1909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 219.3555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 224.3274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 154.8832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 158.4003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 74.0641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 77.6328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 166.8006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 170.2669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 186.0342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.5192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 68.9518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 71.8871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 187.8649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 190.6996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 190.9411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 194.3052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 46.2706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 49.2705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 200.1097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.563ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19676.5697ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19679.9371ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 72 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003(String unitNo, Int32 lineID, String modelname) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 497 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 182.946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 188.5543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 138.093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 140.6234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 191.0766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 194.5825ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 161.8884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 164.749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 165.9277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 170.0305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.8722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32.898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.8773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.0085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 161.7061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 165.2269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 146.1705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 148.5182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 158.8492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 162.3795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.0276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32.2535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 190.4109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 193.5364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 217.6812ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 220.4704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 203.7609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 206.0827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 196.8804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 199.5045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.9273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 186.428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.5261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 222.806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 229.2754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 226.0035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 229.1316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 345.8951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.5773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.7375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 38.8167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 405.7399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 409.3455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 412.1147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 414.8922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 260.2498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 263.2706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.5328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.4138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.2734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.6394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 157.3945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 160.391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.8029ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 162.732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 170.8125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 174.1779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.6254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.5231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.6913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 146.8077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 150.9374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 170.7957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 157.5522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 161.0207ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.9759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.6866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.0871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.1495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 164.7888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 167.8192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 149.156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 151.8599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 163.1977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 167.0369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.6147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.9753ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.CompilationFailedException: One or more compilation failures occurred: -D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml(91,63): error CS0103: 名稱 'StandardWorkTimes' 不存在於目前的內容中 - at Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.RuntimeViewCompiler.CompileAndEmit(RazorCodeDocument codeDocument, String generatedCode) - at Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.RuntimeViewCompiler.CompileAndEmit(String relativePath) - at Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.RuntimeViewCompiler.OnCacheMiss(String normalizedPath) ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Razor.Compilation.DefaultRazorPageFactoryProvider.CreateFactory(String relativePath) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.CreateCacheResult(HashSet`1 expirationTokens, String relativePath, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.OnCacheMiss(ViewLocationExpanderContext expanderContext, ViewLocationCacheKey cacheKey) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.LocatePageFromViewLocations(ActionContext actionContext, String pageName, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.FindView(ActionContext context, String viewName, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine.FindView(ActionContext context, String viewName, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.FindView(ActionContext actionContext, ViewResult viewResult) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.2175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.4414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.5181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.5432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 152.9857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 155.9805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 155.3292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 158.0693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 162.4134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 166.4855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.8858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.3256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.4485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.8528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 162.1749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 165.2749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 146.7764ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 149.2312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 155.6913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 158.9255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.5508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.3435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.5492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.2368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 127.7525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 130.7806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.2142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 191.6885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 169.8933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 173.094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.3795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 205.5632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 209.3859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 235.8551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 240.1374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.2447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 185.5378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.6672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.6707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 183.836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 187.3592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 58.405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 61.4785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 173.9696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 176.9083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.4531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.3821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.7293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 167.7225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.2548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 151.7097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 154.625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 172.5381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 176.3934ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.3859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.4811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.0876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.8424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 123.0109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 125.9984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.8674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 214.2171ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 182.9176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 186.2583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.0397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 132.6465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 135.7836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 128.1907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 131.3488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 133.7945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 137.3484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.6628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 164.6401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.5939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.8859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.0554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 160.1801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 163.3838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 154.8315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 157.7654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 162.4923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.3585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.5073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.8319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.9517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 144.3973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 150.6484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 134.1162ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 136.8135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 158.7525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 163.0754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.0766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.1391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.0157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.9723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 170.6867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 174.4807ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 166.5384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 169.7331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 165.2027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.9485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.7285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.9843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.1747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 146.9711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 150.0255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 138.9283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 142.1848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 165.6533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 168.8682ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.8851ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.4799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.5193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.3492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.9644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 162.7481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 133.6554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 136.5108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 143.7099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 146.8771ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.4143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.8526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.9859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.3738ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 152.4458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 155.4321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 153.3093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 155.7157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 153.7ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 157.1863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.6689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.2514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.1669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.1569ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET htt \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231106083959_34592.log b/AMESCoreStudio.Web/logs/stdout_20231106083959_34592.log deleted file mode 100644 index 9790d197..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231106083959_34592.log +++ /dev/null @@ -1,259 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3373.2189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3381.7031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 51.2556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 53.7631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 54.3128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 57.4126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 85.8428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 88.0827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 145.6117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.9459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 138.4644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 141.4635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 262.9782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 266.0081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.3024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.1629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 411.209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 366.9719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 369.2937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 416.2647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 194.8113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 199.3079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 19942.1866ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 19944.9298ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetWorkGroupsAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 372 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.8862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.9051ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.2795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.1566ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 155.1847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 158.4992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.4659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.0113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 161.2384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 164.362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.3277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.8914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.0778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 187.0476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.9257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 153.6509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 156.1424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.7028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 178.2898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.4424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.2ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 131.4224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 134.9127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 192.6011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 196.0925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 170.0028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 173.0586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 185.1036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 187.6754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.8527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.6863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStud \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107011436_48084.log b/AMESCoreStudio.Web/logs/stdout_20231107011436_48084.log deleted file mode 100644 index e9548c46..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107011436_48084.log +++ /dev/null @@ -1,441 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3610.0879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3618.9734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.5832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 66.7317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 58.2356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 61.8201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 111.5058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 114.8211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 175.5706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 178.9187ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.3749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 168.8094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 91.9016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 94.7297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.6776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.9456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.7788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.9866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 304.827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 307.7089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 347.416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 379.9487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 185.9645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.0499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 186.5239ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.7552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 65.789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 68.3657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 176.8743ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 179.1793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.6742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.1844ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.7962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.4015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 160.63ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 163.3919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.3422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.0883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 180.485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 183.0794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.2958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.6091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 153.4836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 156.0158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.5576ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.7057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 186.9357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.7484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.7799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.3581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 152.0028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 154.5862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.8051ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.3927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 151.256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 153.7447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.7294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.5437ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 144.7668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 147.7997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.6075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.1644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 149.4229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 151.9648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.4668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.7818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 146.3564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 148.9916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 165.1652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 168.0109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 46.3107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 48.4237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 153.9421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 156.9102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 158.861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 161.5488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 43.6719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 46.3694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 153.0399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 155.712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.0519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.4994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.5027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.3643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 140.1287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 142.6732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.1451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.1666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 156.6632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 159.5951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.4296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.2991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 151.3477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 154.1562ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.6206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.1271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 156.8995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 159.8453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.1522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.8448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 146.6434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 150.1638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.2958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.8886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 153.969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 156.8297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.6837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.3639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -i \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107020152_13888.log b/AMESCoreStudio.Web/logs/stdout_20231107020152_13888.log deleted file mode 100644 index c38e96af..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107020152_13888.log +++ /dev/null @@ -1,682 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3103.0508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3112.0237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 50.7965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 54.0242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 50.9683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 53.7655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 87.1276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 89.9473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.3856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.7393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.9545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 168.6863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 37.9721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 43.2898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.2371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.9582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.7891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 312.1705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 315.2245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.9453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 53.4425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 55.6158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 121.9109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 124.3108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.3544ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.2413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 122.6083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 125.1444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.3238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.8474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 7808.7551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 7811.123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.7364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.2057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.6306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1869.041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1872.1456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1847.1235ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1850.0463ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 44.5456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 47.2199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1810.1079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1812.6937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.4121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.5639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.4613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.1886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2070.0268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2072.4155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.4829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.1083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1941.2842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1943.7705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.5786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.0629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1563.9994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1566.8022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1881.1216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1883.8696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 36.001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 38.4059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 866.2913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 868.6785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.0794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.3736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.85ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.5045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1872.0904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1875.2601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1607.7568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1610.4112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.5226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 34.9151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1410.5701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1413.0359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.9614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.3831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.0035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.5719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2209.524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2211.8522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 69.2559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 71.9783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 1176.0114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 1178.5232ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 1128.3403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 1130.7597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 402.2931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 405.2094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 182.3938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 185.1064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 174.7173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 177.8361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 184.9017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 187.8485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 184.6699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 187.8895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 174.5032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 177.098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 189.7155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 192.7305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FqcInhouseMaster/FqcInhouseMasterQuery?barcodeNo=&wipNo=&boxNo=&inhouseNo=&date_str=&date_end=&status=&page=1&limit=10&factoryID=12&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 199.8381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 202.3422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.7932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.0114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 246.7879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 250.1315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.6728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.4129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.4161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.8545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.0013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.6157ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.6232ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.0648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.0586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.027ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 61 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.5889ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 61 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.7767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.5383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.4352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.9551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1406.9967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1409.7337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 19778.6211ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 19781.6478ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.QRSController.QRS009(String id) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\QRSController.cs:line 87 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS017?wipNO= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS017?wipNO= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 485.581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 489.2448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS017?wipNO=104156902A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS017?wipNO=104156902A01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 10655.8507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 10658.4752ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Items/CPU1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Items/CPU1 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 59.5599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 62.4432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Items/LBOX -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Items/LBOX -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 12.1727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 14.6632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Items/3G_MPCIE -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Items/3G_MPCIE -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 11.9722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 14.4525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Items/DRAM3 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Items/DRAM3 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 11.9798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 14.2746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18993.1254ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18996.2274ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 72 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003(String unitNo, Int32 lineID, String modelname) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 514 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper map \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107074755_26308.log b/AMESCoreStudio.Web/logs/stdout_20231107074755_26308.log deleted file mode 100644 index 2c35180c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107074755_26308.log +++ /dev/null @@ -1,167 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3557.6776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3565.6681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 56.7382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 59.2237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 55.5992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 58.316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 90.3455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 92.9748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 139.0485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 141.7474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 138.993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 141.7038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 34.8092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 38.0018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.2929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.2898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.5732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2712.2271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2715.0497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1618.1158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1622.0088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 51.4212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 54.8661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 820.3286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 824.0422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 4739.6618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 4742.5441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 33.1517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 35.848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 966.4577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 968.924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.3952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.8174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.3314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.8704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.6579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1463.7491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1466.3975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107075457_41440.log b/AMESCoreStudio.Web/logs/stdout_20231107075457_41440.log deleted file mode 100644 index fe0d05f7..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107075457_41440.log +++ /dev/null @@ -1,192 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3432.5758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3441.3328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 52.7955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 55.8047ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 49.3694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 53.1359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 105.8605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 108.3755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.2717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 168.0633ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 147.3361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 150.0412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 38.4134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 41.7921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.3232ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.1951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.9567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 303.8578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 306.4906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 124.0068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 127.5255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1975.0492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1977.3839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 123.8025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 126.5015ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'GetStandardWorkTimesAddDefault' was not found. Searched locations: /Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'GetStandardWorkTimesAddDefault' was not found. The following locations were searched: -/Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.cshtml - at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable`1 originalLocations) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 138.1041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 140.7502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 15631.2013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 15633.5315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 126.4212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.6451ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'GetStandardWorkTimesAddDefault' was not found. Searched locations: /Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'GetStandardWorkTimesAddDefault' was not found. The following locations were searched: -/Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.cshtml - at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable`1 originalLocations) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker inv \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107095309_15660.log b/AMESCoreStudio.Web/logs/stdout_20231107095309_15660.log deleted file mode 100644 index 83a0369c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107095309_15660.log +++ /dev/null @@ -1,223 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3486.9811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3495.5563ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 51.2265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 53.6198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 50.5642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 53.4659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 79.1267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 81.4999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 155.7253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 137.7156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 140.3289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.4163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.7133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 321.1684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 324.0906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 123.4939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 126.2498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 19489.2605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 19492.1671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 139.8949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 142.2296ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'GetStandardWorkTimesAddDefault' was not found. Searched locations: /Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'GetStandardWorkTimesAddDefault' was not found. The following locations were searched: -/Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.cshtml - at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable`1 originalLocations) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 357.233ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 359.6201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 8673.9714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 8676.5129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 260.606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 263.0035ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'GetStandardWorkTimesAddDefault' was not found. Searched locations: /Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'GetStandardWorkTimesAddDefault' was not found. The following locations were searched: -/Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.cshtml - at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable`1 originalLocations) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous locati \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107095643_8264.log b/AMESCoreStudio.Web/logs/stdout_20231107095643_8264.log deleted file mode 100644 index 6454c5b7..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107095643_8264.log +++ /dev/null @@ -1,262 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2815.6855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2824.8487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 53.5919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 56.3995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 47.917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 51.1138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 90.016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 93.2089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 138.9684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 142.6546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.0883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.4104ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.9867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.5116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.9384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.3889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 321.327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 324.369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 133.7799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 136.9892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1305.3388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1308.0643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 122.411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 125.2025ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__21>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 95 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__6>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 94 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.ExecuteAsync(ActionContext context, PartialViewResult result) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 119.0367ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 121.9442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2251.9227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2254.0513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 116.3817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 121.9789ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__21>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 95 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__6>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 94 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.ExecuteAsync(ActionContext context, PartialViewResult result) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 135.7569ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 138.5151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1065.735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1068.1635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.6702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 127.9553ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__21>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 95 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__6>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 94 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.ExecuteAsync(ActionContext context, PartialViewResult result) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/ap \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107101213_7932.log b/AMESCoreStudio.Web/logs/stdout_20231107101213_7932.log deleted file mode 100644 index 2ebb8b4f..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107101213_7932.log +++ /dev/null @@ -1,318 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3447.8116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3456.2028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.1625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 65.8986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 47.6571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 50.7941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 82.9268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.8874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.6031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.8686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 133.0756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 136.3203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 156.5512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 161.2781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.7191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.8929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.6905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.1371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 309.17ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 312.0864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 131.0247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 134.0797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42720.4463ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 42722.9793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 97.3257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 100.0369ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__21>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 95 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__6>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 94 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.ExecuteAsync(ActionContext context, PartialViewResult result) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 120.9128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.4402ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 967.4514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 970.5607ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 121.4022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 124.4556ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__21>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 95 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__6>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 94 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.ExecuteAsync(ActionContext context, PartialViewResult result) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.8069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.4925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Appl -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Appl -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 124.5399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 127.3167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.8479ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.4088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/App -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/App -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 141.55ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 144.0068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.0775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.7998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 68.9146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 74.8814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 67.8263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 72.4362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1013.5869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1016.5617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 66.4142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 69.0478ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__21>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 95 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__6>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 94 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.ExecuteAsync(ActionContext context, PartialViewResult result) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Fact \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107101753_15484.log b/AMESCoreStudio.Web/logs/stdout_20231107101753_15484.log deleted file mode 100644 index 22ec853c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107101753_15484.log +++ /dev/null @@ -1,411 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3073.4164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3082.0832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 51.7701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 54.4915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 48.8292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 52.5489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.8882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 87.8648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 154.1058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 156.8545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 145.4393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 148.3669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 35.258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 39.8444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.5336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.4989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.4526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.8131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 305.9887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 308.58ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 145.6817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 148.4927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1018.5618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1021.1975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 130.4817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 133.3176ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 122.4864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 125.0516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2436.5048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2438.85ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 119.4629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 121.9587ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 138.3595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 140.9011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 5553.3082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5555.8069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.6596ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.1554ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 128.9128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.7868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 980.0838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 982.5453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 123.3059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 126.1991ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 120.8451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.5077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1221.7196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1224.3822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 156.2319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 159.1128ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 135.3068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 138.2144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 49.7945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 52.5453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 120.1737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 122.8238ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 123.8993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 126.2115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 54.4858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 57.011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 132.354ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 134.7825ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 132.6073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 135.2888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 48.9703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 51.6061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 132.7926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 135.3997ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 135.9353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 139.5697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 49.4806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 52.1422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/P/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/P/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 46.458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 49.5832ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 128.3265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.0833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 51.5065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 54.2653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 135.9148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 138.827ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.9051ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.7727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.4339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.5758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 131.6424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 134.1861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 135.4309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 138.2315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 47.4362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 50.2875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 1334.3015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 1336.8543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.7103ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.5926ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 620.0431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStud \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107103302_17740.log b/AMESCoreStudio.Web/logs/stdout_20231107103302_17740.log deleted file mode 100644 index 336d97e0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107103302_17740.log +++ /dev/null @@ -1,113 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3142.6064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3151.5116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 59.787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 62.379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 56.1012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 59.1006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 122.9877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 162.1968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 165.4599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 170.9464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 174.2923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.9684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.8489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 369.0533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 372.0756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.7878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.6302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.3872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.2101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.5848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 219.8115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 240.4583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 243.958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.C \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107113923_27892.log b/AMESCoreStudio.Web/logs/stdout_20231107113923_27892.log deleted file mode 100644 index e5183de0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107113923_27892.log +++ /dev/null @@ -1,111 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4879.2455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4888.107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 81.7273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 86.4561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 72.024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.5963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 169.3094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 173.5175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 204.9051ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 209.3469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 213.4756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 220.8166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.8988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.3666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.9797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.6086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 495.4759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 501.4139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 299.996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 304.3424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.1077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.9858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 335.486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 342.7906ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.9951ms - OK -info: System.Net.Http.HttpClient.AMESCor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107115310_34680.log b/AMESCoreStudio.Web/logs/stdout_20231107115310_34680.log deleted file mode 100644 index 73b9beb8..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107115310_34680.log +++ /dev/null @@ -1,222 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3146.0387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3155.7867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.7482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 67.5684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 67.1102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 72.7983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 149.1449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 153.1227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 215.7478ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 221.0861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 211.1841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 217.2982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 77.1645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.3554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.5053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.3275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.9118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 638.7177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 649.5583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 324.4731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 328.1282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 180.4731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 326.3818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 332.1531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.1129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.6433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.6773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.7029ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 306.1876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 312.5472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 346.6478ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.4313ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 169.8229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 173.2458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.4402ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 339.3228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.8219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.5166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.4351ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.4551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.0793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 324.2315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 338.1499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 305.1565ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 311.5056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.3711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 166.4745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 322.425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 327.8917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP re \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107120037_25396.log b/AMESCoreStudio.Web/logs/stdout_20231107120037_25396.log deleted file mode 100644 index 7a39b827..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107120037_25396.log +++ /dev/null @@ -1,734 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3103.2322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3112.8964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 57.0793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 61.4445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 66.0475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 69.642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 136.5266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 140.6943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 197.3369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 203.0374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 223.9087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 229.9429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 77.1009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.3794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.8579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.9179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 481.0892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 486.9219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.0354ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 225.4557ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 230.4666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 346.9956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 354.3781ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 345.5718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.7101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 178.7492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 187.0036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 344.2821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.1171ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.3139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.4508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.5897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.3048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 381.7573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 388.5228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 332.6837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 339.3091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 175.2912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 182.5098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 427.5418ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 431.3818ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.0108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.7875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 77.5651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 85.0888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 314.7425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 324.8144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.1379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.0625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.7761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 180.7701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 312.3746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 318.2318ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.7301ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.9022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.7288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.9673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.7753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 346.6748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 367.4993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 375.4968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 176.3916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 185.4432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 359.911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 366.648ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.3699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.0039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.1619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.1869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.8981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.8928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 307.3096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 317.1436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.0176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 307.5595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 311.6391ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.8939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.5244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 94.3385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.3427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.7285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 90.6884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.6688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 90.716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 94.2566ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 535.522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 541.547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 81.8732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 86.7382ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 97.586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 104.7406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 651.2079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 659.2422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 90.7192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 97.4009ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 86.9663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 117.7841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.6917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.6832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 112.2953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.3734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 88.3981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 99.2286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 517.1398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 524.3685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 135.8962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 141.0818ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 71.7635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.1436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 340.0815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 345.5964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.6408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.3131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 341.7737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.9574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 326.618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 331.7005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.1802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 352.7088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 356.5825ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.7254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.5444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 305.97ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 316.5862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 340.4513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.7727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 172.6195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 179.2123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 320.0936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 330.901ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.0004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.2248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.3994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 338.0803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 321.9871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 333.9064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.1746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 196.0663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 401.2379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 406.5848ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 340.4698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 355.1625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 169.4153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.4805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 332.7495ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 57.7956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 65.8508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 46.3034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 53.1903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 107.2621ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 119.7387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 141.129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 151.8149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 174.889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.7921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.5559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.0712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.1428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.1578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 338.3089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 510.5032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 517.0269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.5281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 209.2148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 324.0334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 332.1265ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.1123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.0967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1: \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107123058_28100.log b/AMESCoreStudio.Web/logs/stdout_20231107123058_28100.log deleted file mode 100644 index a21ae2c3..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107123058_28100.log +++ /dev/null @@ -1,226 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5060.8384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5083.4293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 68.6001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 74.5399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.26ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 89.3223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 169.2187ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 178.1853ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 199.5919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 205.7375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 224.6482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 231.6439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.0145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 82.2207ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.0077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.9882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 525.9068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 534.2308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 340.4348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.8394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 203.0547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 212.2882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.6874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 344.7738ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'Microsoft.AspNetCore.Mvc.JsonResult', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.ExecuteAsync(ActionContext context, PartialViewResult result) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 107.3492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 116.1657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 407.0348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 416.7312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 85.1125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 91.5204ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'Microsoft.AspNetCore.Mvc.JsonResult', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.ExecuteAsync(ActionContext context, PartialViewResult result) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 95.7949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 103.3208ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 444.7976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 455.0921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 97.3948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 102.9497ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'Microsoft.AspNetCore.Mvc.JsonResult', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107123735_21312.log b/AMESCoreStudio.Web/logs/stdout_20231107123735_21312.log deleted file mode 100644 index 3ba3f961..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107123735_21312.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3649.3282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3666.4525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 74.5517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 79.6878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 79.0533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.1773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.6319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.7557ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 205.6014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 210.228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 259.6846ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 267.328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factory \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107123924_24796.log b/AMESCoreStudio.Web/logs/stdout_20231107123924_24796.log deleted file mode 100644 index 5430f1af..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107123924_24796.log +++ /dev/null @@ -1,2964 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3482.6892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3503.351ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 67.151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.0614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 64.2152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 70.0591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.5958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.9373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 206.3335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 216.5033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 251.951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 263.174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 71.1028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 80.6584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.7039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.3411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 472.5496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 477.346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 348.1669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 355.1892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 241.6963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 247.2926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 363.5454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 373.2779ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'WHS/WHS003' was not found. Searched locations: /Views/WHS/WHS/WHS003.zh-TW.cshtml, /Views/WHS/WHS/WHS003.zh-Hant.cshtml, /Views/WHS/WHS/WHS003.zh.cshtml, /Views/WHS/WHS/WHS003.cshtml, /Views/Shared/WHS/WHS003.zh-TW.cshtml, /Views/Shared/WHS/WHS003.zh-Hant.cshtml, /Views/Shared/WHS/WHS003.zh.cshtml, /Views/Shared/WHS/WHS003.cshtml, /Pages/Shared/WHS/WHS003.zh-TW.cshtml, /Pages/Shared/WHS/WHS003.zh-Hant.cshtml, /Pages/Shared/WHS/WHS003.zh.cshtml, /Pages/Shared/WHS/WHS003.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'WHS/WHS003' was not found. The following locations were searched: -/Views/WHS/WHS/WHS003.zh-TW.cshtml -/Views/WHS/WHS/WHS003.zh-Hant.cshtml -/Views/WHS/WHS/WHS003.zh.cshtml -/Views/WHS/WHS/WHS003.cshtml -/Views/Shared/WHS/WHS003.zh-TW.cshtml -/Views/Shared/WHS/WHS003.zh-Hant.cshtml -/Views/Shared/WHS/WHS003.zh.cshtml -/Views/Shared/WHS/WHS003.cshtml -/Pages/Shared/WHS/WHS003.zh-TW.cshtml -/Pages/Shared/WHS/WHS003.zh-Hant.cshtml -/Pages/Shared/WHS/WHS003.zh.cshtml -/Pages/Shared/WHS/WHS003.cshtml - at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable`1 originalLocations) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 317.8195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 324.4496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 164.8882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 174.4753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 311.3126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 315.0576ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'WHS/WHS003' was not found. Searched locations: /Views/WHS/WHS/WHS003.zh-TW.cshtml, /Views/WHS/WHS/WHS003.zh-Hant.cshtml, /Views/WHS/WHS/WHS003.zh.cshtml, /Views/WHS/WHS/WHS003.cshtml, /Views/Shared/WHS/WHS003.zh-TW.cshtml, /Views/Shared/WHS/WHS003.zh-Hant.cshtml, /Views/Shared/WHS/WHS003.zh.cshtml, /Views/Shared/WHS/WHS003.cshtml, /Pages/Shared/WHS/WHS003.zh-TW.cshtml, /Pages/Shared/WHS/WHS003.zh-Hant.cshtml, /Pages/Shared/WHS/WHS003.zh.cshtml, /Pages/Shared/WHS/WHS003.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'WHS/WHS003' was not found. The following locations were searched: -/Views/WHS/WHS/WHS003.zh-TW.cshtml -/Views/WHS/WHS/WHS003.zh-Hant.cshtml -/Views/WHS/WHS/WHS003.zh.cshtml -/Views/WHS/WHS/WHS003.cshtml -/Views/Shared/WHS/WHS003.zh-TW.cshtml -/Views/Shared/WHS/WHS003.zh-Hant.cshtml -/Views/Shared/WHS/WHS003.zh.cshtml -/Views/Shared/WHS/WHS003.cshtml -/Pages/Shared/WHS/WHS003.zh-TW.cshtml -/Pages/Shared/WHS/WHS003.zh-Hant.cshtml -/Pages/Shared/WHS/WHS003.zh.cshtml -/Pages/Shared/WHS/WHS003.cshtml - at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable`1 originalLocations) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.3306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 323.5341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 186.9487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.6701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 318.5695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 326.7416ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'WHS/WHS003' was not found. Searched locations: /Views/WHS/WHS/WHS003.zh-TW.cshtml, /Views/WHS/WHS/WHS003.zh-Hant.cshtml, /Views/WHS/WHS/WHS003.zh.cshtml, /Views/WHS/WHS/WHS003.cshtml, /Views/Shared/WHS/WHS003.zh-TW.cshtml, /Views/Shared/WHS/WHS003.zh-Hant.cshtml, /Views/Shared/WHS/WHS003.zh.cshtml, /Views/Shared/WHS/WHS003.cshtml, /Pages/Shared/WHS/WHS003.zh-TW.cshtml, /Pages/Shared/WHS/WHS003.zh-Hant.cshtml, /Pages/Shared/WHS/WHS003.zh.cshtml, /Pages/Shared/WHS/WHS003.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'WHS/WHS003' was not found. The following locations were searched: -/Views/WHS/WHS/WHS003.zh-TW.cshtml -/Views/WHS/WHS/WHS003.zh-Hant.cshtml -/Views/WHS/WHS/WHS003.zh.cshtml -/Views/WHS/WHS/WHS003.cshtml -/Views/Shared/WHS/WHS003.zh-TW.cshtml -/Views/Shared/WHS/WHS003.zh-Hant.cshtml -/Views/Shared/WHS/WHS003.zh.cshtml -/Views/Shared/WHS/WHS003.cshtml -/Pages/Shared/WHS/WHS003.zh-TW.cshtml -/Pages/Shared/WHS/WHS003.zh-Hant.cshtml -/Pages/Shared/WHS/WHS003.zh.cshtml -/Pages/Shared/WHS/WHS003.cshtml - at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable`1 originalLocations) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 312.2546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 318.4296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.2432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 178.6665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.6532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 341.7486ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'WHS/WHS003' was not found. Searched locations: /Views/WHS/WHS/WHS003.zh-TW.cshtml, /Views/WHS/WHS/WHS003.zh-Hant.cshtml, /Views/WHS/WHS/WHS003.zh.cshtml, /Views/WHS/WHS/WHS003.cshtml, /Views/Shared/WHS/WHS003.zh-TW.cshtml, /Views/Shared/WHS/WHS003.zh-Hant.cshtml, /Views/Shared/WHS/WHS003.zh.cshtml, /Views/Shared/WHS/WHS003.cshtml, /Pages/Shared/WHS/WHS003.zh-TW.cshtml, /Pages/Shared/WHS/WHS003.zh-Hant.cshtml, /Pages/Shared/WHS/WHS003.zh.cshtml, /Pages/Shared/WHS/WHS003.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'WHS/WHS003' was not found. The following locations were searched: -/Views/WHS/WHS/WHS003.zh-TW.cshtml -/Views/WHS/WHS/WHS003.zh-Hant.cshtml -/Views/WHS/WHS/WHS003.zh.cshtml -/Views/WHS/WHS/WHS003.cshtml -/Views/Shared/WHS/WHS003.zh-TW.cshtml -/Views/Shared/WHS/WHS003.zh-Hant.cshtml -/Views/Shared/WHS/WHS003.zh.cshtml -/Views/Shared/WHS/WHS003.cshtml -/Pages/Shared/WHS/WHS003.zh-TW.cshtml -/Pages/Shared/WHS/WHS003.zh-Hant.cshtml -/Pages/Shared/WHS/WHS003.zh.cshtml -/Pages/Shared/WHS/WHS003.cshtml - at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable`1 originalLocations) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 341.6244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 347.2107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.3828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 194.3223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 335.4923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 343.4635ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.9912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 187.3537ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 192.2556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.5176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.1864ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.1695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.2259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 324.7181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 333.6387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 351.7121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 358.0955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 185.6799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 198.2971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 298.0831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 303.1503ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 276.3755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 279.56ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.4732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 178.8484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 311.0705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 314.9729ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 329.2873ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.3553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 164.4532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 174.5308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.2833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 345.3417ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 342.8322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 352.1794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 186.4435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.9193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 310.4911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 317.2297ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.2489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.9666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.1322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.9304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.4495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.2252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.4927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 1600.6519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 554.0051ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 560.4234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 179.3008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.7255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 304.7065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 314.0025ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.2647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 4924.3571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 384.8892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 399.5295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 191.194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 208.4461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 346.816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 355.7902ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 129.7904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 137.265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 893.5075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 900.3311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 134.4529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 140.2003ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.9602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.1701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 101.5263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 107.1527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 94.7956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.0819ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 795.6582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 801.43ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.6777ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.4908ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.0979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.7157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 344.1039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 354.149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 336.4178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 345.3542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 176.2054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 181.991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 332.5938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 341.0428ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 105.6526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 112.916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 617.7911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 626.9451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 92.5263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 99.5279ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 96.3608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 103.013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 472.4296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 480.0766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 97.4876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 103.1989ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.6561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 84.2458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.4389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.7457ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 391.3564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 402.1773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 399.2801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 409.9809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 187.7422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 195.1591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 341.2329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.913ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 102.0325ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 107.3009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 431.8694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 439.6205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 93.5054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 97.215ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.6891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.4725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.5032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 364.9129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 380.4053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 131.2179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 137.8194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 385.5251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 391.2996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 86.796ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 92.2651ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.4955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.8172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.0241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.1946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 335.1336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 343.5876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.3953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 333.2971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 190.3891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 199.6403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 340.5234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 354.5361ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.2942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 104.4946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 110.8082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 577.4963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 588.7674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 92.0699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.112ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 101.2157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 110.1453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 578.5787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 586.2789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 103.9786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 111.0338ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.2291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.6574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 343.1019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.5679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 361.4686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 369.4147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 188.1947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.4272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 356.9756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 368.0575ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 341.9719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 374.4383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 222.7059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 230.4372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 397.332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 403.4955ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 109.9644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 116.2944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 436.9132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 442.2833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 92.9783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 98.21ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 497.6188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 504.2421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 379.178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 393.7316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 361.0457ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 368.8083ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.8034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 74.3107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.9734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.7246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 187.9764ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 195.1854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 349.649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 358.0402ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 319.8043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 325.9044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 201.2711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.4623ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 343.7042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.1302ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 81.1694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 84.8914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 557.9335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 562.8624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 755.0888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 773.4316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 600.6994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 614.1424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 637.2419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 650.3245ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 465.7944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 476.51ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 258.1676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 270.2103ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 502.8976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 513.9044ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 603.1161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 623.8988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 295.4683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 319.2462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 498.8749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 515.3932ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1122.6923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1134.8424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 471.9357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 484.3756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 921.2069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 930.865ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 388.0641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 395.7434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 195.7891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 203.9991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 344.7565ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.5067ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 189.1267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 195.1493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 437.4252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 455.3064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 282.6461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 290.8423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 420.2812ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 432.0773ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 560.5316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 568.4071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 444.4474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 454.8089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 739.7284ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 748.8452ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 639.6149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 648.1097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 308.3313ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 320.9144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 549.791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 560.7026ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 354.3184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 363.9659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 199.5611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 206.1808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 339.6816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 353.2051ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.6767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.5944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.6517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.1242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.9843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.9568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.9601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.4703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.0542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 44.7156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.0772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.8074ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.4973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.6888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.9431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.0367ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.4562ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.1838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.5183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.6337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.6742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.0721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.4221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.6947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.7842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.4223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.3318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.7704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.9649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.1178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.4516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.9845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.4701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.9255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.8736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.2894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.4904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.8776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.4474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.8458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.3244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.0792ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.8085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.7187ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.1747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.5416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.8894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.8021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.6612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.2798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.5727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.0075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.1905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.0905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.1196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 44.1339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.0921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.8789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.7459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.4674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.9489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.0258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.3308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.3132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.9952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.1355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.9352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.6182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.8057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.9098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.3842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.2795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.0217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.8129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.1958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.4142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.4982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 38.4779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.4132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.2555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.8111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 44.4402ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.4073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.7286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.8224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.7545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.5923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.1271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.3295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.8337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.9323ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.2516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.4907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.3379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 38.0815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.7839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.8878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.7052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.1933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.7339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.6028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.3931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.9505ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.6815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.8366ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.4476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.1185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.501ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.88ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.3597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.3859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.9257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.7085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.3225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.2149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.0825ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.9793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.0379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.4023ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.3985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.0819ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.5328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.2964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.1454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.5603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.1401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.3686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.4083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.8619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.0695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.4159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.7837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.7445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.9782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.6224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.8946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.2875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.6339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.2261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.9834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 38.0348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.14ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.2638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.9192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 38.6583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.5466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.7745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.1729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.5309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.2356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.2462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.6982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.6989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.6861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.1239ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.9528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 44.4665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.3083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 38.968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.7021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.0461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.0611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.6113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 654.9831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 669.0997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 199.066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 212.1853ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 345.587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 360.535ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 442.2491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 450.8217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 230.0234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 235.3604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 397.5619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 403.1846ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yuui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yuui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.8542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.3713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 122.3304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 132.6841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yuui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yuui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 608.8528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 624.7359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yuui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yuui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 92.2144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 102.3547ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 71.3581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.3306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.0476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.6917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 148.9353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 154.8448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2413.8884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2420.0791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 127.5982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 141.7417ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.8036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.9142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/YY -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/YY -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.3352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 73.0755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 118.2263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.9358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/YY -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/YY -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 615.557ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 622.2494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/YY -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/YY -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 108.7181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 114.013ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 134.9444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 148.9061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.8601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 177.5962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1208.9541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1218.8829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 135.9558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 142.0142ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.6917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.6153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 93.3684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 98.5268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 110.5628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 118.4375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 562.2281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 578.0205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 87.053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 93.6733ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.0864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 338.2231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 201.8871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 212.471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 342.5343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 356.044ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 122.8678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 127.0102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 599.9405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 608.1965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 90.4324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 99.5124ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.5145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 379.8826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 391.5351ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 186.9315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 194.8185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 339.1085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 352.4401ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 377.5823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 390.6844ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 226.1885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 234.7056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 316.1176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 321.5623ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 428.553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 433.3963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 204.0933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 210.0335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.0905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 341.8665ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 346.5353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.9875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 190.1966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.0387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 363.5454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 369.8158ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.1728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.6411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 354.4459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 365.359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 180.0983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 192.1549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 357.4271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 369.3801ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.0754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.5724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.6661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 333.4712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 592.3565ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 602.5983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 208.4979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 225.1486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 350.3094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 363.1163ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.1052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.6043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 317.5661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 329.0115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 183.5056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.0003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 349.6329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 359.3495ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 93.0542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 97.9664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 580.9305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 591.1582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 93.1972ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.663ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/%09Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/%09Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 85.5547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 95.9045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/%09Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/%09Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 553.0737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 559.1357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/%09Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/%09Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 84.275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 92.9641ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 105.3645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 111.1541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 548.4095ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 555.7173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 92.7524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 99.8543ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.2728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.2248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.5752ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 222.4378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.8079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.3084ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 392.0539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 400.7786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 245.2416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 252.3283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.7784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.5411ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.9166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.2353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 335.7953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 346.7938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 217.5101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 224.3836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 356.6283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 369.1485ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.5904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.0569ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stand \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107135337_15832.log b/AMESCoreStudio.Web/logs/stdout_20231107135337_15832.log deleted file mode 100644 index 88c9b741..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107135337_15832.log +++ /dev/null @@ -1,110 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5046.8734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5055.3167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 68.283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.2246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 79.3828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 83.6352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 157.4226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 163.343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 196.6922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 200.802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 230.0763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 232.9598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 82.8071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.5362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 483.4156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 487.9278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 193.5493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.7737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 343.0405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.7974ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.1736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.0578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 351.7613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 358.3674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3 \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107140346_7460.log b/AMESCoreStudio.Web/logs/stdout_20231107140346_7460.log deleted file mode 100644 index cc7d9975..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107140346_7460.log +++ /dev/null @@ -1,110 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3453.8755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3469.4926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 86.9692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 96.0748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 83.4847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 92.9649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 212.553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 217.3598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 234.1024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 242.2072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 377.635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 383.9704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 195.0066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 199.49ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 903.1608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 909.0956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 288.7694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 297.6964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 440.3895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 450.9465ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.0218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.7025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 339.8945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.0794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107141542_9756.log b/AMESCoreStudio.Web/logs/stdout_20231107141542_9756.log deleted file mode 100644 index d7cc3887..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107141542_9756.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3243.1264ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3256.4338ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 77.1726ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 81.9682ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 76.9026ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.418ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 172.0882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 178.5332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 212.1462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 216.8297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 218.2033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 225.6357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107142205_29056.log b/AMESCoreStudio.Web/logs/stdout_20231107142205_29056.log deleted file mode 100644 index a1750c9a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107142205_29056.log +++ /dev/null @@ -1,158 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3410.1579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3424.6646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 95.2388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 104.5402ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.0784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 91.8951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 177.1081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 182.5736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 206.7749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 212.8334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 253.3513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 262.1343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 90.6014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 99.7365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 529.3791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 535.7133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 231.5496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 239.6083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.8497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.3391ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 364.7991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 369.5295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 202.6247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 209.1838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 356.767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 365.2891ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 369.6655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 377.1814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 232.5489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 243.5633ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 349.055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 356.4477ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 348.2606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.7601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 204.3226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 211.6122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/A \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107143055_4788.log b/AMESCoreStudio.Web/logs/stdout_20231107143055_4788.log deleted file mode 100644 index bfaaab1d..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107143055_4788.log +++ /dev/null @@ -1,46 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3467.5268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 3478.3218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 240.4035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 246.4802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 356.1632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 362.2977ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107143226_9240.log b/AMESCoreStudio.Web/logs/stdout_20231107143226_9240.log deleted file mode 100644 index 24332a6a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107143226_9240.log +++ /dev/null @@ -1,182 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3498.0881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 3508.4407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 276.943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 282.8115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 332.2779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.7297ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'GetStandardWorkTimesAddDefault' was not found. Searched locations: /Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'GetStandardWorkTimesAddDefault' was not found. The following locations were searched: -/Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.cshtml - at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable`1 originalLocations) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 393.6853ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 399.9766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 50.5111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 55.5478ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 59.258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 64.8394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 153.0949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 159.9019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 193.7535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 201.056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 228.8737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 235.4333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.0784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.4022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 552.9671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 557.1929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 543.8149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 548.2963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 713.5418ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 718.8599ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'GetStandardWorkTimesAddDefault' was not found. Searched locations: /Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'GetStandardWorkTimesAddDefault' was not found. The following locations were searched: -/Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.cshtml - at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable`1 originalLocations) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddle \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107143820_17528.log b/AMESCoreStudio.Web/logs/stdout_20231107143820_17528.log deleted file mode 100644 index 1d52aa0b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107143820_17528.log +++ /dev/null @@ -1,1277 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3490.2765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3508.977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 72.8649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 79.9012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 66.4398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 74.131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 185.9219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 193.943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 198.8279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 207.9762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 234.0438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 241.3443ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 530.5427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 536.9851ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 213.7603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 220.012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 342.5865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.625ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 289.7375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 293.8586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 81.1769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 91.8113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1351.377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1355.4151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 764.3785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 770.8179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 955.6ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 959.9879ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 117.7207ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.9257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1054.3551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1058.6287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 110.5515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 118.79ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.7003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 184.883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1477.636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1482.4134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 157.7182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 166.519ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.5264ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 97.847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 107.0403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 96.9095ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.2121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 589.8141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 597.4229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 91.0322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 105.1409ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 133.7925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 137.2686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/0/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 396.6038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 404.8856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.2058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 110.7362ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.5263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.9267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 582.021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 593.6324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 101.6482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 113.1862ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 352.2622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 357.5454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 211.4487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 217.9983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 344.929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 353.9404ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 117.388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 121.7627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 589.0948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 593.4053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 336.1862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 345.6072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 191.0994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.3987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 320.841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 335.6949ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.6047ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 345.8157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.4046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.0393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 324.2015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.5148ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 310.4299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 319.2002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 186.1791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 191.69ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.4393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.6969ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 80.1917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.7521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.5053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.4933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.9561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 335.2963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 345.4355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 356.2652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 182.4652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.7464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 336.7057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.2621ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.1845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 344.2107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 203.2651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 211.7036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 358.7056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 371.6782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.3873ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 195.2589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 344.8056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 356.0641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 612.9566ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 621.2819ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 252.498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 262.4827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 639.5601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.2473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 644.1777ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.0712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 368.6049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 373.5727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 605.7398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 615.0987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.7672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.0627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 295.5694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 304.9467ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.3695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 318.2755ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 170.3198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.2435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.3555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1559.573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 333.8134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1565.8656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.7034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 191.455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 304.6769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 313.6628ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 316.1526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 319.8947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 323.6731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 331.1296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 318.5475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 330.552ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 182.4858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.7991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 172.5427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 182.6486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 305.5604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 312.3545ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 329.8364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.2331ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 308.6806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 314.4707ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 317.7816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 328.7679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 295.6522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 302.5217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.6196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.7551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 182.4266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 191.2889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 311.1132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 319.5539ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 336.0504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 344.3365ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.7948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.7858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.1179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.0247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 373.5913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 388.0801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 388.8783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 398.3752ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.1973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.4175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.9425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.7814ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 321.0825ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 334.6112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.0039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 191.916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 327.662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 332.3823ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.5128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.2258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 110.1398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 118.1283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.3157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.8163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.0405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 71.466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 500.1349ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 516.1276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 382.5198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 393.6943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/DeptInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 104.6038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 112.9734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SupportUsers/Query/15/i/B/2023-11-01/2023-11-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SupportUsers/Query/15/i/B/2023-11-01/2023-11-01 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 137.6975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 148.3942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SupportUsers/Query/15/i/B/2023-11-01/2023-11-02 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SupportUsers/Query/15/i/B/2023-11-01/2023-11-02 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 62.2088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 71.1562ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/SupportUsers/Query/15/i/B/2023-11-01/2023-11-02 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/SupportUsers/Query/15/i/B/2023-11-01/2023-11-02 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.9996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 51.1246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.7424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.2285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.4308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 367.4107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 377.8204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 357.3973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 368.0864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 172.271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 182.8949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 317.8019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 331.209ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 395.386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 402.7736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 178.5499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 190.4512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 362.0959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 378.8106ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.4257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.1172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.0107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.7291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.5035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.3956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.7087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.8541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 377.7035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 392.9451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 364.6436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 376.9358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 183.2808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 196.3098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 307.8236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 312.7238ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 297.5351ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 306.0767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.2574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.8339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 320.5786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 330.7042ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 360.0357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 371.5539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.0373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 201.6776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 353.2583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 366.541ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 343.5996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.0918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.8227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 182.373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 297.6787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 301.0891ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.4344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.3217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.8642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.0038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.9967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 344.5838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 428.3699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 437.7974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 253.5013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 260.2924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 357.5841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 369.743ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.3173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.1812ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.2547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 204.3345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 312.1394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 330.135ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 327.7606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 338.9984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.5324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 199.5445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 316.4233ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 328.744ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.3957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.7636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.1861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 439.2261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 449.9519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 412.3372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 422.7793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 284.9328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 291.8442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 433.5296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 442.4758ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 427.7253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 438.1474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 264.908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 269.8405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 409.6713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 416.0581ms - OK -warn: Mic \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107150850_7932.log b/AMESCoreStudio.Web/logs/stdout_20231107150850_7932.log deleted file mode 100644 index f370fc10..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107150850_7932.log +++ /dev/null @@ -1,978 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3609.3188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3623.7919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 82.6028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 92.4012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 98.81ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 105.5287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 271.7418ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 278.9218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 224.0764ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 229.8962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 259.1134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 263.6954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 107.7778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 113.058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.3055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 507.987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 513.5599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.8049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.8243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 196.6275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.4109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 312.4578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 316.7535ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.2749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 344.0732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 183.7837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.1379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 342.2315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.0068ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.5221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.6115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.3126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.5065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 343.6461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 357.6163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.6258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 202.3913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.2604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.4084ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.3552ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 355.6125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 361.1569ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 192.8462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 198.9624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 325.8518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.4772ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.8966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.4644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.7586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.7829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 322.6965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 329.3225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.7857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 344.9108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.6281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.4525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.9988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.5985ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 295.7774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 304.7009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 218.2882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 224.7997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 342.6287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.1977ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 351.4902ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 358.2637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.8446ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 181.6555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 302.619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 307.0262ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 44.0225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 49.9328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 42.5885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 46.2705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 87.9952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 92.1327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 145.9541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 150.0032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 175.9155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 179.6477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.7595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.2433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.6784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 332.0117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 346.3805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 320.2705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 333.1493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 176.6724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 190.7179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 300.5227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 308.8707ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.6338ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.4207ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.1894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.2373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 344.6631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 353.062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 335.9661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 345.2549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 190.7181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 199.8847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 326.8153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 339.4472ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 314.963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 324.9077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 225.2031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 232.45ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 324.2462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 332.8568ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 350.7237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 361.6451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 211.0397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 222.8937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 343.7247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 357.4729ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.5743ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.1955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.8122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.9139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.3792ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.8684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 342.684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 353.2002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 188.481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.8306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 535.0716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 542.5508ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 392.9018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 406.2773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.7752ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 187.1506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 305.5505ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 314.1388ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 731.7426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 742.0046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 319.1948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 324.6137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 179.0398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 185.0727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.5546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.9048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 346.0965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 354.2578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 353.3945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 357.3434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.0265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.0832ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 299.3645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 304.1929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 188.461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.5413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 188.7261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 319.7883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 322.8132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 321.2935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 327.7505ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 194.9388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.6596ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 360.4552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 370.8925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 307.0648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 316.8323ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 180.064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 317.5453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 185.2379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 327.185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.3002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 373.5553ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 193.689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.8581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 323.3027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 332.2151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 320.9118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 330.3326ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 203.0892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.7286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 319.7822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 323.4728ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 296.0069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 307.1173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 298.6471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 304.5766ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.3871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 187.1438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 301.2715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 306.7615ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 321.1721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 329.0196ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.7825ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 184.8832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 320.4902ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 328.9117ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.1972ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 68.5483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.5408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 347.7975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 359.1904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.8826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.7209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 361.9312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 370.4663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.6781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 355.7983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 363.9729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.6014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.6425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 353.5538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 365.5466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.5409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.1847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 117.3189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 135.5693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 360.9336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 364.0063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 347.5157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 360.6292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 176.126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 187.8944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 287.9149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 298.8557ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stand \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107153543_35756.log b/AMESCoreStudio.Web/logs/stdout_20231107153543_35756.log deleted file mode 100644 index 38202513..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107153543_35756.log +++ /dev/null @@ -1,412 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 8369.5312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 8382.9143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 108.0319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 111.8012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 108.3087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 115.6009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 210.897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 217.0308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 226.9608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 234.2573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 223.8554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 232.0628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 98.0695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 103.7651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.0385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 644.3304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 649.1524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 450.8674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 461.3323ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 226.3426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 235.0372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 348.2982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 352.9456ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 455.7994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 469.3648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.1086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 198.0541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 326.4752ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 333.7577ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 377.2174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 382.406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 197.7677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.4241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 311.0507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 321.6428ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.5401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.4455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.0417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 350.3481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 354.9617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 323.3301ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 333.2575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 182.0092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.8595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 332.6761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 338.8703ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 320.7783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 331.3479ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 179.51ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 190.6587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 316.7336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 327.7978ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 593.7908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 605.2807ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 188.2379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 198.2899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 329.374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 341.8351ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.3417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 185.7372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 326.7109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 335.4669ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.8898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 353.3755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.1463ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 317.8614ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 234.6936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 239.9877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 395.9523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 414.7636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 187.8489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 195.9255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 352.8079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 357.1797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 318.9776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 329.2984ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.2199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.9178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 96.9855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 106.3549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 369.3168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 375.3076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 371.2287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 380.6191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 195.3294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 206.7125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 339.3772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 344.3107ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 325.5483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 339.9832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 188.5888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.0561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 321.5736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 331.8718ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respe \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107154024_23564.log b/AMESCoreStudio.Web/logs/stdout_20231107154024_23564.log deleted file mode 100644 index b697f3c2..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107154024_23564.log +++ /dev/null @@ -1,110 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5471.9866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5489.8539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.8837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 70.5288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 62.9975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 69.6753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 136.8127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 144.7236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 178.8922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 183.7383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 210.0738ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 214.0892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.5881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 80.5598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.6815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.7809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 519.4758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 525.7492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 343.0971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 196.5659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.8108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 351.7605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 355.7047ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231107154333_19800.log b/AMESCoreStudio.Web/logs/stdout_20231107154333_19800.log deleted file mode 100644 index cec7f706..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231107154333_19800.log +++ /dev/null @@ -1,211 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4832.6433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4846.1753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 74.6494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 81.4035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.0512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 78.5101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 162.0106ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 167.7936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 198.4486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 205.8053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 219.0077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 226.3484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 78.8902ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.8959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.7753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.5084ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 547.5503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 552.4173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 326.3754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 335.5651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 179.3523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 188.1109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 310.4922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 315.2501ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.3791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 202.3161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.4471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 298.0508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 303.9831ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.6455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.6739ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.615ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 310.7155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 315.2403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.8918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 338.6141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 196.0842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 206.7217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 339.4454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 344.6744ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 314.8898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 324.7902ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 200.0261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 209.7079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 325.023ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 330.8478ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS. \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231108015818_16472.log b/AMESCoreStudio.Web/logs/stdout_20231108015818_16472.log deleted file mode 100644 index f8b7f4c7..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231108015818_16472.log +++ /dev/null @@ -1,266 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3617.0489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3625.1698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 77.4541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 80.3696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 62.0537ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 65.5965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.4496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 122.1856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 153.374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 156.0346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 159.0233ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 161.6599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 171.5367ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.5508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.1023ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.6568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.9211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 404.678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 407.9032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.1579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.4521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.4324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.9722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 206.8169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 209.3456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 219.5561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 222.7743ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 118.6154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 121.022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 211.1731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.7764ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 200.4897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 203.4399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 108.5552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 114.585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 208.3035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 211.0637ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 206.5954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 209.4857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 111.0935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 113.9958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 206.5375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 209.0765ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 597.5385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 600.0517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 103.9705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 109.3588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.1129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 212.969ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 35.2147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 37.5415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 24.5373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 26.909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 56.5969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 59.3799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 122.8525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 125.99ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 136.8146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 138.7527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 406.7624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 412.5096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefaul \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231108020312_17436.log b/AMESCoreStudio.Web/logs/stdout_20231108020312_17436.log deleted file mode 100644 index 8660e553..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231108020312_17436.log +++ /dev/null @@ -1,113 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2708.4268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2716.7749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 54.1675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 56.332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 48.3928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 51.6363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.4632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 94.1584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 140.0542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 142.9801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.5715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 145.976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.6185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 45.4217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.5447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.5564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.0917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.3964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 309.9377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 312.8469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 129.7093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 132.4749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 62.973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 65.304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.4504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 127.9591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231108025847_15652.log b/AMESCoreStudio.Web/logs/stdout_20231108025847_15652.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231108083418_892.log b/AMESCoreStudio.Web/logs/stdout_20231108083418_892.log deleted file mode 100644 index 251d0132..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231108083418_892.log +++ /dev/null @@ -1,1333 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4558.9816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4567.7437ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 64.1692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 67.4327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 72.6346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 76.628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.0628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 122.0976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 157.2638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 160.3472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 175.0896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 179.0098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 130.5333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 134.1127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.3758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.2372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.7521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.7797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 386.6184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 389.7927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.4908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 216.9748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 141.5157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 143.9996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.8728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.1389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.5017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.3183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.0426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 204.8929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.3363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.1766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 215.2624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 103.5999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 109.8417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 217.8651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 225.0237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.3506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.2851ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.8439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.1592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 311.9236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 318.9912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 375.8324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 380.5413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 126.3202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.5475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 381.0613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 383.7988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.5592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.0355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.1122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.5082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 229.0068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 234.8195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 220.3872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 223.5801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 103.6115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 204.1183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.1428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 191.1531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 194.1123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 98.252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.2206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 206.628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 212.4245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 208.2906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 211.5682ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 106.5489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 109.3711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 214.5847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 217.3719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.3374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 38.9256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.5693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.1734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 212.5834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 215.7084ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 220.0724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 111.3995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 117.6995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 220.5616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 222.9984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.5212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.2826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.9371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.9325ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 219.8484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 225.8037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 203.3649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.2638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.6079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 103.2103ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 218.7123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 222.0234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.7444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.0797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 208.4887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 215.1213ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.8875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.6822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.7325ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.3059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 196.8692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.7895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 197.8944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 201.7458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 96.6016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 99.4232ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 201.5746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 208.788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.4121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.2369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 195.7279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 199.375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.0238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 187.729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 194.3045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.7352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.6454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 218.3783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 225.2899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.3277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.8154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.4575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.6329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.8762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.8787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 203.4271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 210.2816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 97.8674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 100.5369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 203.961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 209.9428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 200.8864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 204.7524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 102.4652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 105.6044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 202.9477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 206.4069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 205.682ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 208.6441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 103.2579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.3075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.0282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 201.0749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.3789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.3496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.2232ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 195.3488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 201.6052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.6423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.0494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 107.5098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 110.6081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.0856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 212.1252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.4453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.4451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 214.9409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 217.8653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 227.2287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 232.472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 120.6155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 126.6514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.8256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 216.1175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.3886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32.9085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.3386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.0458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 220.3783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 224.4827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.4608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.7346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 109.7911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 112.6056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 199.5766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 203.1667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.5909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.8231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.7725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.0853ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 195.2125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.9171ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 218.5076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 225.3165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 110.2152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 116.0109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 205.3567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 208.1718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 206.9711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 211.0951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 133.8342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 137.8249ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.0527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.1823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19713.3699ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19716.2592ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 72 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003(String unitNo, Int32 lineID, String modelname) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 496 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 221.5636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 223.8555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.0708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.6391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 221.629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 224.2717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 205.2657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 209.2601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 108.2078ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 113.1573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 196.1768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 199.1387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.1652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.8904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.0799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.5303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 201.7016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 204.3972ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 188.5023ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 192.1013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 110.3437ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 116.014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 203.5024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 210.2131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.4958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.3887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.6433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 185.4987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.0419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.2991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 216.2714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 97.858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 103.511ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.5424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 201.4121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.2091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.5039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.5661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 204.5209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 105.4723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 111.1786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 207.5142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 211.1305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.5069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.7342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.7142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.9503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.9437ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 216.5518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 207.7612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 109.2221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 112.4697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 207.6414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 211.2143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.2947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.0905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 205.5954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 212.0603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 107.0238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 113.3117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.4196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.8931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.9388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.2121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 213.2829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 216.9838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 97.7691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.8889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 220.3731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 224.1689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.2673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.0099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.8363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 217.4996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 119.1635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.6151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.5212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.6938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.1798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.0547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 204.6834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.5802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.3918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.5912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 238.0604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 242.9777ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 108.5972ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 114.4128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 216.3983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 219.0881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.0681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.0872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 299.2679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 303.0307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 164.2406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 170.2191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 292.7639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 295.9723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.2057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 267.8263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 271.6304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.4877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.0021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 185.7148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 188.9321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 105.2485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 112.7352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 205.2054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 211.3211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.8818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.5973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.7117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 219.8097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 109.6509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 112.6392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/ \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109011856_6692.log b/AMESCoreStudio.Web/logs/stdout_20231109011856_6692.log deleted file mode 100644 index 5d3f3d91..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109011856_6692.log +++ /dev/null @@ -1,1189 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3659.4147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3669.3486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 64.976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 68.0924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 58.4935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 61.3846ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.2612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 118.049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.0199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 168.625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 173.77ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 176.8612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/QcGroup/QcGroupQuery?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/QcGroup/QcGroupQuery?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 428.1968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 431.7733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.0645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.2822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 394.4133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 398.0428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 136.1228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 139.899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 205.8748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 208.2837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.9946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.9899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.7579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.5663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 205.5413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 208.2907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 205.4774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 208.7418ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 105.6112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 108.2393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 197.0075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 199.686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.1173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.0612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.9019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 199.8102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.2916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 206.4307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 210.1077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 119.0191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 125.4359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.3417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 211.7588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 225.4661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 228.5125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 100.5733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 103.234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 262.5925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 264.5883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 229.5382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 233.2398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 115.1776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 117.9492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 295.4715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 298.5229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.6415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 184.8067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 65.8137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 68.2558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.8968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 162.9729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.6605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.8228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.6181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.1717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 190.0361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.0983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 185.2044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 188.3701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 84.6727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 91.0954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 171.9507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 174.8344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 173.7384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 178.6673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 80.4118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 84.7377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 171.3317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 174.2274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.9328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.01ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.4737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.5976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 185.2638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 188.0886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 169.2883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 172.4675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 85.1789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 87.7341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.3393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 179.9837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.6262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 203.0045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 82.1927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 85.094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 161.5684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 164.0779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.1604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.1786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.6788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.5141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 160.8475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 163.8447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 193.213ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 201.0313ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 88.5672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 91.6485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 176.1783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 180.0935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.1056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 176.9357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 179.7912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 164.8119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.2529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 78.3925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 81.066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 162.8631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 165.7948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.3472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 13.8268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 167.7753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 170.6957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.9451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.3139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.1549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 171.5073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 173.9863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 164.1468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 167.4498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 76.1963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 78.7197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 203.415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.2447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.2193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.9887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.4102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 180.4112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 162.8785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 169.7923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 72.2828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 74.9676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 197.2376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 203.3611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.9292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.6459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 167.9543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 170.6598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.3553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 176.8417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 67.8936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 70.9676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 170.4941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 172.9119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.9863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.6016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 155.0736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 157.4802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.9725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 178.3822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 69.4198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 72.3613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.7416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 185.0973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.3506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.3806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 162.9999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 166.2099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 179.5591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 183.7476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 95.0356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 98.0365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.9852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.6729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.6884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.3941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.5134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 180.0499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.5694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.7782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.8982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 173.1937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 176.1942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 164.6732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 168.0788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 78.5285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 81.3229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 142.3372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 145.3278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.9514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.0765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.8159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.7763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 475.2161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 481.4927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.4426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 181.5076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 76.6314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 79.6497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 169.1308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 172.0875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.5421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 180.5318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 68.7425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 71.4667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.6656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.6337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.2237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.8465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.3198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.3214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.4417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 188.0959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 176.2125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 179.6807ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 86.6642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 89.7283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 167.7665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.9643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.3646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.5699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.8962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.8854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 203.3098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.7111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.7185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.0547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 183.2497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 187.0301ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.1066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.9262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.0046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.8685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.6009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.5775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 176.7789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 179.87ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 73.3905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 76.5936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 164.3797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 168.1148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.2293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.4208ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.4279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.7753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.9737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 184.7315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.5496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.4841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 91.5541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 94.6285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 524.9389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 527.8211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.3024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.0904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.9777ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.8863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 213.9144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 218.1533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 211.7343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 215.1454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 106.5985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 109.1091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 202.167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 204.9567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.9476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.0397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.8531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.6468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 196.0585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.3763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 193.6309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 196.0047ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.2515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.2064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 206.1038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 212.0309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.9335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.7163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.4078ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.6231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.7803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.1401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 216.7323ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 221.2781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 185.7194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 192.6206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 106.0886ms - OK -info: System.Net.Http.HttpClient.AMES \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109015448_13088.log b/AMESCoreStudio.Web/logs/stdout_20231109015448_13088.log deleted file mode 100644 index 29219250..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109015448_13088.log +++ /dev/null @@ -1,438 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3356.2776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3364.6418ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 61.4398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 64.653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 58.0794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 62.0053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 121.395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 124.5164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 162.7327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 165.1934ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 173.2786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.8594ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.4538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.0222ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 328.1244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 330.8184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FlowRules -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 105.3984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 108.8687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.3305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.8027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.5212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.8832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 343.4379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 347.1149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.9958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 215.8515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 145.1269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 150.3398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 211.4877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 214.7251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 207.0882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 210.3476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 98.6806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.2642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.8866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.047ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.7237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.6902ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.8776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32.6749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 217.6828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 220.2946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 220.7603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 223.8852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 108.5299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 111.3736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 208.4994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 210.9124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.3798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.4839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 211.4732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 214.3014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.5878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 214.6325ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 107.8909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 111.0646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 204.0909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 206.9392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.0387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.3399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 215.114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 105.3017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 108.3668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 202.2708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 206.1739ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.0042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.1946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.3006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.4908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.6376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.8318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.4457ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 218.3913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 199.4011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.8482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 112.3119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 115.2891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 190.5859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.3174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.8586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.7825ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.9023ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.9974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.0119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 207.5126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 210.0024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 224.4759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 227.9574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 100.0902ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 102.9835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 222.0366ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 224.7697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.1125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.8767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.4872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.6129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 200.0176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.4507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 202.9465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 107.6374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 110.3702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 217.0204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2 \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109021305_12976.log b/AMESCoreStudio.Web/logs/stdout_20231109021305_12976.log deleted file mode 100644 index cd1614af..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109021305_12976.log +++ /dev/null @@ -1,454 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3406.3966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3414.9213ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 55.9152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 58.585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 50.8425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 53.6745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 82.8392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.8848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.1229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 168.0044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 151.8133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 155.7326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=B&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=B&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 68.794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 71.9472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 42.6817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 45.1802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 278.241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 281.0423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 43.371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 47.1307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 33.6754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 36.182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.7718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.9584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.6366ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.1556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.4852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 36.0441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 39.5453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.5281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.0875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 31.6122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 35.049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.9106ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.8184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.3722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.2137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.5719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.8808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 48.0604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 50.5304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 26.7411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 30.2904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.4098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.6316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 21.5694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 24.6242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 21.4522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 24.2648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.7482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.0041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 31.8948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 34.5815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 26.7241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 29.1284ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 21.7603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 23.9309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.0486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.5482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.3966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 19.2138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 21.425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1041?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1041?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 95.2003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 97.6719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1007 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1007 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.2034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.5991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1050 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1050 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 34.1971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 36.418ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1023 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1023 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.8906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.2152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1053 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1053 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.9365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.1768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.7621ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.0581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.8497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1007&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1007&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.7004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.3303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1050&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1050&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.1219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1023&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1023&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.8958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1053&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1053&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 65.6318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 68.0559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.4345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 24.6344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 20.3091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 22.6098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.3793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.7901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.576ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.6892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 292.2055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 295.3338ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.5522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 68.1843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 71.0028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.7431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.1508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 118.955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 122.2228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 48.9336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 51.4089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 126.2403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.8914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 141.1422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 143.9626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 61.7653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109021646_21916.log b/AMESCoreStudio.Web/logs/stdout_20231109021646_21916.log deleted file mode 100644 index 11e2ebb0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109021646_21916.log +++ /dev/null @@ -1,163 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2811.9105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2820.6696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 50.94ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 53.7949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 48.082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 51.4339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 94.371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 96.9595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 142.9046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.0184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.5335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.3669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 38.287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 41.8694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.7508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.3055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.3535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.3096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 345.8158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.1206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 143.1558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 146.339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 83.9564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 89.8523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 143.0525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 145.9648ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 139.0126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 142.2406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 54.4628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 57.0889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 142.3091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 144.8333ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.5449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.3436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.6944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 129.1389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 128.5339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.463ms - OK -info: System.Net.Http.HttpC \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109022148_10284.log b/AMESCoreStudio.Web/logs/stdout_20231109022148_10284.log deleted file mode 100644 index 211c36c0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109022148_10284.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3631.581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3640.0738ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 60.8229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 63.4779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 67.1916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 69.8931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 136.1324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 139.0018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 185.4358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 189.0195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.7218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.8872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 44.5157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 47.3001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.4904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.3946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.8446ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 440.527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 443.9709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 205.7766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 209.308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 141.9071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 145.6381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 216.8979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 219.7616ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectiv \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109022520_2512.log b/AMESCoreStudio.Web/logs/stdout_20231109022520_2512.log deleted file mode 100644 index 055387a4..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109022520_2512.log +++ /dev/null @@ -1,480 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2874.4407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2882.7673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 68.1905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 70.9461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 75.2479ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 78.8652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 112.7381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 115.7867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.7896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 165.8288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 182.2567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 185.8597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=B&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=B&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 83.8493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 87.5153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 33.095ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 35.473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 402.8472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 405.6299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 77.2532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 79.4903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 42.8611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 45.2215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 43.7212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 48.5664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 40.1765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 42.9849ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 52.3191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 54.9886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 42.0179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 45.2857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 41.1564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 44.2653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 40.4067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 43.2865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 44.1928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 46.6302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 37.0977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 39.5135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 55.2876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 61.0365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 388.258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 391.515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 46.4475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 48.7176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.3406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.6972ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 206.9431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 209.1455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.4339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 40.78ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 39.4153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.6089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 36.8166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 39.072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 41.8695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 44.0857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 39.1774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.4856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 37.7522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 40.2958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 47.2136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 50.18ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 41.7512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 44.2362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 27.4925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 29.8862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1041?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1041?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 175.0064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 177.2813ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1007 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1007 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 40.7569ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 43.2852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1050 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1050 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.3911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 40.3416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1023 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1023 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 41.6239ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 46.0606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1053 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1053 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.2651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 40.6848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 39.1343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 41.0308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 43.0717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1007&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1007&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 37.4908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 40.195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1050&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1050&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 39.5156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.9399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1023&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1023&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 37.6107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 39.8487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1053&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1053&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.4104ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 43.9535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 36.474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 39.0025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 37.4928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 40.3906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.5483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.7174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.0537ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.8882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 218.2842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 221.715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 118.4086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 124.4205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.8748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 180.813ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'GetStandardWorkTimesAddDefault' was not found. Searched locations: /Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'GetStandardWorkTimesAddDefault' was not found. The following locations were searched: -/Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/WHS/GetStandardWorkTimesAddDefault.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Views/Shared/GetStandardWorkTimesAddDefault.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml -/Pages/Shared/GetStandardWorkTimesAddDefault.cshtml - at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable`1 originalLocations) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 203.8483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.2572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 88.4302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 90.5561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 178.4801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 181.1649ms - OK -fail: Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor[3] - The view 'GetStandardWorkTimesAddDefault' was not found. Searched locations: /Views/WHS/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/WHS/GetStandardWorkTimesAddDefault.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Views/Shared/GetStandardWorkTimesAddDefault.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-TW.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh-Hant.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.zh.cshtml, /Pages/Shared/GetStandardWorkTimesAddDefault.cshtml -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The view 'GetStandardWorkTimesAddDefault' was not found. T \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109022934_16040.log b/AMESCoreStudio.Web/logs/stdout_20231109022934_16040.log deleted file mode 100644 index 08134010..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109022934_16040.log +++ /dev/null @@ -1,113 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2889.2564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2897.7004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.4249ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 66.8306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 61.7783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 64.8517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 118.2674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 121.2326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.8214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.6456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.7238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 171.0118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 49.6892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 52.6677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.9334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.1657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.0997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.1806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 364.2178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 367.8272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.9069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.0172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 121.4908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.8309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 197.8929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.7353ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.ArgumentException: Value ca \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109031646_13816.log b/AMESCoreStudio.Web/logs/stdout_20231109031646_13816.log deleted file mode 100644 index 9030c393..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109031646_13816.log +++ /dev/null @@ -1,1040 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3673.2199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3681.9424ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 54.8033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 56.9581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 52.6682ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 55.597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 88.0646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 90.9758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 142.2939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 145.6566ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 146.2013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 148.7752ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=B&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=B&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.4599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 76.9959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 23.9441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 26.7911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 266.799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 269.1485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 54.8887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 58.1354ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 31.9394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 34.9412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.4385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.7215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 21.4317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 23.5848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 29.3634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 32.6013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.4058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.9982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 29.3608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 32.2551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.8057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.2558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 34.5692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 37.6021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.2935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.6013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 20.8649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 23.9731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 42.3725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 45.3889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.5192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.6436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.3804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.7295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.6167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 29.1601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.7333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.0762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.1618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 28.6655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 33.1113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.0378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.4109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 29.1474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 32.3136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.3003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.0251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 30.4521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 33.4084ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1013 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 19.0196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 22.9834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1041?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1041?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 93.2319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 96.8312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1007 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1007 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.7612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.7091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1050 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1050 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.3426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1023 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1023 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 26.3941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.9311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1053 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1053 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.4951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 42.3473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 30.6022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 33.0735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1002&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 28.5195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 30.9434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1007&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1007&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 28.5596ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 31.4541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1050&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1050&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 29.1919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 31.9138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1023&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1023&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.6812ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.2347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1053&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1053&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.37ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.3906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.0809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.8972ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1002&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.5164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.7634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.8744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.0826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.7532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.1989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/uuu -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/uuu -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 94.1683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 100.9954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/uuu -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/uuu -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 68.2079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 71.2818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault//uuu -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault//uuu -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1.8664ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 3.7506ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String UnitType, String ItemNo, String Unit, Int32 LineId) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.4355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.6113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.5908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.0867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 217.5956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 220.1915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 126.3027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 129.1998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 73.496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 75.6479ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 143.5747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 146.2613ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.0129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.2961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 70.7292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 76.5345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 68.4739ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 71.5333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault//yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault//yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 4.0323ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.9856ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String UnitType, String ItemNo, String Unit, Int32 LineId) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 72.5322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 75.8217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.7671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.8409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.3452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 73.7784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 80.4401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 78.089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 80.4834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault//yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault//yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3.8325ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.7071ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetStandardWorkTimesAddDefaultAsync(String UnitType, String ItemNo, String Unit, Int32 LineId) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 655 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.0656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.8559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.4958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.4469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 192.0575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.8838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.0812ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 155.7775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 158.8062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 135.0581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 137.879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 59.5616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 62.0417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 162.5766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 165.955ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.6607ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.3464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.2226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.4577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 124.544ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 126.7066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 142.9439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 145.8496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 49.6087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 52.4624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 136.6308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 139.0711ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.2229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.8867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.0447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.4087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.3967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 187.2794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 129.295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.9763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 51.6129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 53.7552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 121.5212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 124.2157ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 200.2471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 235.5482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 50.9067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 52.9816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 27.9494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 30.0078ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 882.4038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 885.0169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 67.2747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 71.1416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 22.4687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 24.9334ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.2795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.1626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.8609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.1347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.1993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.9499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 178.9696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 182.1682ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__22>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 100 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__8>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 99 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.2322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.0506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.3188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 13.7646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.6874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 177.4809ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__22>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 100 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__8>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 99 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.5357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.1516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 139.9553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 143.2179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 109.6808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 112.6011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 457.6519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 460.1304ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.4197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.3871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 979.5676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 982.3065ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__22>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 100 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__8>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 99 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109032609_23676.log b/AMESCoreStudio.Web/logs/stdout_20231109032609_23676.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231109032632_23880.log b/AMESCoreStudio.Web/logs/stdout_20231109032632_23880.log deleted file mode 100644 index a6e35ef4..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109032632_23880.log +++ /dev/null @@ -1,164 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4325.7324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4334.8932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 222.9265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 226.7398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 42.0456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 45.52ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 39.9715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 43.377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 97.675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 99.8222ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.8124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 148.5146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.2936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.4031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 37.5109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 40.8028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.1897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.7503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.4625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 309.8644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 312.8673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 124.3037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 127.9529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 72.8019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 75.7654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 121.1751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 124.3064ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.2592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.8944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 67.0595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 69.6327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 74.4479ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 77.2431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/1/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 133.9931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 136.6335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/yui -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 75.307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 77.8587ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processi \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109033020_5160.log b/AMESCoreStudio.Web/logs/stdout_20231109033020_5160.log deleted file mode 100644 index 01a41493..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109033020_5160.log +++ /dev/null @@ -1,162 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2913.0808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2921.3376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 54.1511ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 57.1766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 48.2538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 51.2054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 95.4704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 98.6411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 146.6439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 149.758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.5302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.4392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 36.7298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 39.2228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.1047ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.5897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.7098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.6765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 312.8888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 316.0788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 139.8477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 144.042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 69.3692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 72.0788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 118.1586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 120.4435ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 137.4322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 140.6013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 51.5764ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 53.8989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 27.8795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 30.3668ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 133.6345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 137.4213ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 51.0086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 53.7451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 21.3395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing H \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109033639_25276.log b/AMESCoreStudio.Web/logs/stdout_20231109033639_25276.log deleted file mode 100644 index aa1dfc9c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109033639_25276.log +++ /dev/null @@ -1,164 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3816.0072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3824.7067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 80.4253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 83.7623ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 57.7486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 61.3066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 116.0455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 118.8704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 179.8238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 183.1667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 173.5239ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 177.455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 47.9001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 51.128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.9875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.8244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.2836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.7831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 379.7322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 382.691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.5763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.0116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.4982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 215.9248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 126.1547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.9205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 192.7905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 195.7153ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.2785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 199.1275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 201.6082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 111.1101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 118.4734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 211.0575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 214.108ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.4279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.6676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0. \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109033901_11140.log b/AMESCoreStudio.Web/logs/stdout_20231109033901_11140.log deleted file mode 100644 index a0fec624..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109033901_11140.log +++ /dev/null @@ -1,412 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2844.1818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2853.1554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 51.0439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 53.7175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 49.9538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 53.8774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.3169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 94.5611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 141.087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 145.197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 148.5396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 151.3283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 39.2007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 42.393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.2523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.1973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.5056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.0879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 301.7008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 304.6588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.534ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 86.2254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.7909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.7469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 121.9454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 124.637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 67.2975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 70.093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 128.2233ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.1477ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.9032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.5951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.3611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/B/1002/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/B/1002/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 34.1899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 36.9726ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.3435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.5599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.7241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 215.4955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 13298.4558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 13301.4466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 182.7166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 185.5255ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__22>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 100 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__8>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 99 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.7978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.7235ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.4121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.5218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 182.9218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 185.2385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 39553.4841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 39555.8968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 183.4429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 186.1241ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__22>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 100 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__8>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 99 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.4951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.4889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.4248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.2823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 193.0016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 196.4211ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__22>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 100 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__8>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 99 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.8487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.5171ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.2323ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.6086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 211.844ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__22>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 100 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__8>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 99 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpCont \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109034846_24848.log b/AMESCoreStudio.Web/logs/stdout_20231109034846_24848.log deleted file mode 100644 index ec135dc9..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109034846_24848.log +++ /dev/null @@ -1,230 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3429.8965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3438.0046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 60.9679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 64.1821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 59.1988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 61.9779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 109.3577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 112.0453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 158.0278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 161.1562ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 187.9822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 194.1843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 46.6456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 51.0715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.5662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.8774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.9979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.7967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 497.568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 500.3542ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__22>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 100 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__8>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 99 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.8262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.3175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.7104ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.9372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 149.8931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 153.0309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 74697.6675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 74700.4362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 5490.7411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5494.2072ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__22>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 100 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__8>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 99 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 848.6297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 851.5081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 864.7956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 867.8728ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__22>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 100 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_0.<b__8>d.MoveNext() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 99 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetC \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109113559_22368.log b/AMESCoreStudio.Web/logs/stdout_20231109113559_22368.log deleted file mode 100644 index 7d7ae8c3..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109113559_22368.log +++ /dev/null @@ -1,389 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5843.4831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5854.5436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 95.2311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 99.1286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 90.129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 94.9457ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 199.2523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 202.8478ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 188.1213ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 199.1065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 202.1399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 217.0707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 135.535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 142.1629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.5278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.8051ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 624.6781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 632.5641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 324.4112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.1982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 219.6311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 331.2951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 344.1586ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.7205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.1973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 367.5395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 373.7598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 102.3196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 110.2064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.9686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 80.0644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 335.1092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 354.1465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.6835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.5828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.1797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.7899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 357.8829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 371.0756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 81.4923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 89.4082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.4614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.0301ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 325.1873ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.9648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.6046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.5291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.3059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 337.7388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 345.3053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.7635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.4042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.3472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.7088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.7161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 341.4183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.7448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.1435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.8507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.9479ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.0946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.4787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.4633ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.8584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 501.2397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 509.9387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.9148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.8243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 521.4876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 528.5148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.3758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.4618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.9869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.0062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 498.6864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 507.6072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.3824ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.0627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.0704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.8158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 483.0389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 492.6906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.1761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.4871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.0911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.2341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 502.0164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 511.2571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.4223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.9472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.5721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.1052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.Cli \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109120956_36676.log b/AMESCoreStudio.Web/logs/stdout_20231109120956_36676.log deleted file mode 100644 index 3ca1067f..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109120956_36676.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3152.8897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3169.76ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 69.9744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 78.618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 65.7206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 73.2374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 146.8654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 154.4191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 117.9391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 128.5649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.8875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 167.2749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryU \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109122534_28540.log b/AMESCoreStudio.Web/logs/stdout_20231109122534_28540.log deleted file mode 100644 index 86a756b0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109122534_28540.log +++ /dev/null @@ -1,204 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3503.0928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3521.0487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 66.1329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 72.5666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 62.2712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 69.5144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.2861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 174.0753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.2652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 126.0322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 155.246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 160.4045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 71.6532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.7394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.7565ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.5582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 688.4953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 695.488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.5168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.7933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 500.1695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 506.7638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.3777ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.7136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 541.4119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 549.0549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.5412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.4119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.0398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.4277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 477.1318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 480.7769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.2453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.6499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.0468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.4012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 526.5134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 538.5221ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.7781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109125458_11680.log b/AMESCoreStudio.Web/logs/stdout_20231109125458_11680.log deleted file mode 100644 index 753b02ac..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109125458_11680.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3189.0009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3206.1794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 81.6216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 88.4325ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 90.0386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 98.1561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.5571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 178.184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 120.6097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.6699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 132.5534ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 136.7519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109130520_15928.log b/AMESCoreStudio.Web/logs/stdout_20231109130520_15928.log deleted file mode 100644 index 2902a3c9..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109130520_15928.log +++ /dev/null @@ -1,148 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 6372.3788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 6386.3473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 121.2447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 131.4865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 100.3852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 104.6055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 217.6569ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 224.4294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 149.197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 159.4772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 170.423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 176.7486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 106.572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 114.5711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.8033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 607.8705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 615.7595ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.5172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.1127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.2233ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.2508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 347.0231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 354.6906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.2968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.1133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.Http \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231109131027_35700.log b/AMESCoreStudio.Web/logs/stdout_20231109131027_35700.log deleted file mode 100644 index 8ffb7632..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231109131027_35700.log +++ /dev/null @@ -1,450 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3201.1483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3222.3451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 69.5597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 82.0107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 80.3869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.0952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 149.4546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 159.5447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 135.6601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 142.3268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 140.2924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 144.6949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.2732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 80.3915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.1346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 71.4375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 557.1171ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 566.2948ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 369.7845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 383.5181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 202.6396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 211.1333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 354.0684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 357.7988ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 91.6083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 98.0244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.5635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 309.0888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 316.4936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.9643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.7428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.9874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.8947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 336.0556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.0133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 77.2231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.2287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.5363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.3515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 450.9262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 463.6891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.0608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.557ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.8226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.1749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 347.1885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 354.5597ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.9409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.4113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.4319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.1352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 351.4305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 359.851ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'AMESCoreStudio.Web.ViewModels.WHS.WHS003ViewModel', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.2266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.7994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.0956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 350.0109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 356.0925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.5173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.5811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.1556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.6968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 353.267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 361.8841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[1 \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231110124822_5292.log b/AMESCoreStudio.Web/logs/stdout_20231110124822_5292.log deleted file mode 100644 index c7edfb53..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231110124822_5292.log +++ /dev/null @@ -1,780 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 9923.1684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 9933.2452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 81.4942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 85.2005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 89.0722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 97.2068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 313.524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 324.9614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 206.6175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 213.9385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 202.8633ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 213.5077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 114.2986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 121.2607ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.7058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.6703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 655.1615ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 661.549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 347.235ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 359.338ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 221.2246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 230.2999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 445.2874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 453.7136ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.1032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.9714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 346.7657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.8444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 180.9452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 183.998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 314.4985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 319.0558ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.3126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.0344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.8646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.7138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 345.329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.9031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 340.0372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.9272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 192.2747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.6736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 319.7671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 328.9445ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 604.5984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 611.1803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 353.7683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 358.3365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 534.5631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 540.1407ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.8892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.5741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 633.9071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 640.9011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 315.0944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 323.3023ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 538.4575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 547.9799ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.3731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.7273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 331.3929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.0923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 213.4719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 226.8144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 318.2314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 330.0801ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.2947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.1025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.0157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 461.8438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 468.9347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 355.1215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 364.6403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 187.7609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 195.8635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 317.7125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 325.4397ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 73.3514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.2728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.7467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 179.2334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 182.4437ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 309.7428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 314.3203ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.9948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.6789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.6355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 310.7989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 318.9706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 359.3493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 367.157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.6009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.8299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 326.133ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.3241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.2406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 309.2754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 320.3298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 183.1966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 188.714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.5993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 335.4103ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.7854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.29ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 342.6084ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 358.2048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 170.1825ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 179.3532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.6069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 342.8835ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.5325ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.2219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 349.9392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 356.7042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 219.077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 303.331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 314.9073ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.9198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.8679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 331.0882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.0064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.9295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 164.3911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 287.2235ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 291.2728ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.4341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.8916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.4791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.2357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 348.6696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 367.1301ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.0365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 338.3092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.0008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.7844ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 340.9716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 354.9929ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.4666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.2204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.4194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 341.8572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 179.7219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 184.0472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.7316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.4807ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.2049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.1304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 343.7134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 353.8512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 166.4574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 170.7773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 307.9129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 313.6456ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 62.893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 71.2126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.9867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.3198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 331.0946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 345.0304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 331.378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.2326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 187.482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 191.3616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 329.1093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.5387ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.7441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.1986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 414.3998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 420.9762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 254.896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 262.2475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 390.7904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 401.4792ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.1796ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.9774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 323.9014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.8496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.5905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 183.6545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start process \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231110135028_4572.log b/AMESCoreStudio.Web/logs/stdout_20231110135028_4572.log deleted file mode 100644 index 8ebcdd26..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231110135028_4572.log +++ /dev/null @@ -1,164 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5669.7813ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5682.0356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 98.498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 105.6784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 107.2024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 113.9612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 213.0714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 217.7849ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 157.2202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 164.3288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.3141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 164.8778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 97.3574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 102.9347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 650.6678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 656.3887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 222.182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 233.2319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.5474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.6382ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.0426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.8379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 336.4144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 343.1278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.1382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 343.3123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.5384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.9627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.5795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.8585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 341.793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.2772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 210.044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 71.9226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 83.6329ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.3031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.8717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231110135734_34676.log b/AMESCoreStudio.Web/logs/stdout_20231110135734_34676.log deleted file mode 100644 index fc4135b5..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231110135734_34676.log +++ /dev/null @@ -1,99 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3652.7678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3673.8448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 73.6735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 83.019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 71.8062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.7702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 170.0331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 180.9098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 124.6366ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 130.1753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 152.3369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.0959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.9758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.5806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.0891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.7862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 503.4967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 512.8011ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Invo \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231110135950_21804.log b/AMESCoreStudio.Web/logs/stdout_20231110135950_21804.log deleted file mode 100644 index 1931e50b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231110135950_21804.log +++ /dev/null @@ -1,492 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5077.7685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5098.1386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 67.883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.0803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 75.2834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.0498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.5308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 171.543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 118.4237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 123.6487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 138.063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 142.8929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.5191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 91.7875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.9952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.2687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 528.3465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 534.5814ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.9202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 347.925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 218.5734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 225.6165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 325.9951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 332.7025ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.3289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.5406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.3858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 354.3039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 359.3182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.2741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.9849ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.0593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.5758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 327.2766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 338.308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.6465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.9127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.6277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.6146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 346.8368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 354.9612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.5998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.4737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.5088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 327.8671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 332.5985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.3154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.6795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.2834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.4945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 329.5549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.1114ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.5028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.0377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.2394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.6532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 354.4166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 365.2218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.9498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.2773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.8377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.594ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 349.8153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 361.617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.9201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.4437ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.1452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.5144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.6157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 345.8965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.0114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.8197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 326.1237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 335.3293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.0629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.4396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.7211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.1453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 901.7677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 912.1547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.0638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.3001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.6583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.8084ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 356.9922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 372.6554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 77.7287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 89.2604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.7591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.8682ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 332.0247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 343.7365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStu \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231110142432_21224.log b/AMESCoreStudio.Web/logs/stdout_20231110142432_21224.log deleted file mode 100644 index d16a0d6e..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231110142432_21224.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3917.2269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3926.4029ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 60.693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 64.2532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 51.0684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 54.2892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.1983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 94.3363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 110.8776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 114.5328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 79.8442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Fa \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112114910_12756.log b/AMESCoreStudio.Web/logs/stdout_20231112114910_12756.log deleted file mode 100644 index f8b5f53a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112114910_12756.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 6382.6964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 6392.6133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 118.7198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 124.9924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 98.9855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 107.4914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 247.4676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 254.1739ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 192.3002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 200.3914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 189.2942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 193.2141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Fa \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112120847_11032.log b/AMESCoreStudio.Web/logs/stdout_20231112120847_11032.log deleted file mode 100644 index 3af81583..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112120847_11032.log +++ /dev/null @@ -1,110 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 6781.4741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 6790.4105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 81.4862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 85.3638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 86.9223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 91.1627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 200.0923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 205.5881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 141.5112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 149.2205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 163.7111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.1951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 107.7744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 112.1895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.6946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.5184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/{UnitNo}/{LineId}/{ItemNo}?u=Null&l=-99&i=Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/{UnitNo}/{LineId}/{ItemNo}?u=Null&l=-99&i=Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 128.7878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 135.8036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.8766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.6827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/{UnitNo}/{LineId}/{ItemNo}?u=Null&l=-99&i=Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/{UnitNo}/{LineId}/{ItemNo}?u=Null&l=-99&i=Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 93.3002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 97.1524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 80.3772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 94.2887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/{UnitNo}/{LineId}/{ItemNo}?u=Null&l=-99&i=Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/{UnitNo}/{LineId}/{ItemNo}?u=Null&l=-99&i=Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 81.8782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112121139_31768.log b/AMESCoreStudio.Web/logs/stdout_20231112121139_31768.log deleted file mode 100644 index 9abfc8d8..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112121139_31768.log +++ /dev/null @@ -1,162 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 6563.9776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 6574.3111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 84.7893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 87.4214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 95.0948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 103.8613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 207.3477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 214.2909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 162.4583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 173.6967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 159.1541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 163.3606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 76.8148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.0995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.5056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.2582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1591.9078ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1595.6747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.3613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.9604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2130.483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2137.2149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 73.0886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 341.6394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 347.6102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 385.6669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 396.058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 248.0227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 255.1103ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 368.7869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 375.2593ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1359.173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1368.732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1343.652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1349.2934ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 71.414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 78.6726ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any respo \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112121357_11392.log b/AMESCoreStudio.Web/logs/stdout_20231112121357_11392.log deleted file mode 100644 index 22999a1f..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112121357_11392.log +++ /dev/null @@ -1,110 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3277.1606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3297.4355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 71.8391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 77.4081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 81.4392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 89.2813ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 220.9418ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 229.8317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 132.7323ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 141.6598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 153.4008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.7453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 82.6288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 92.5907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.8606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.3477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 559.4025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 568.5434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 347.5177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 358.5998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 224.3595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 230.8803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 336.0687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 343.6316ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response af \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112121524_32216.log b/AMESCoreStudio.Web/logs/stdout_20231112121524_32216.log deleted file mode 100644 index fd31d2d9..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112121524_32216.log +++ /dev/null @@ -1,258 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3232.1974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3247.8407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 73.4176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 80.2115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 118.0619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.9883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 167.3949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 178.5081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 188.0596ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 194.5282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 155.5688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 160.6732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 94.0504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 100.6368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 113.0746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 116.6315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 772.1623ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 777.3358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 115.6327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 119.1648ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 77.1705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 82.1087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 73.0511ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 81.9895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 450.1444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 462.6408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 60.9707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 79.9828ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 59.7392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 65.4976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 495.524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 500.2989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 60.8031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 67.8507ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 128.4108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 134.8809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 62.0079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 76.6263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 432.2779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 443.4416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 65.4124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 73.5926ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 138.8182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 172.2497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 427.4872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 435.6729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 57.0771ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 62.5069ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 149.3932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 154.78ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 66.399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.3016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 358.6334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 367.3038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 64.6539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 68.6531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 605.7269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 614.8884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 63.0684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 66.7463ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any resp \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112122921_27772.log b/AMESCoreStudio.Web/logs/stdout_20231112122921_27772.log deleted file mode 100644 index 09b365a1..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112122921_27772.log +++ /dev/null @@ -1,217 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3357.0754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3370.9275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 72.1456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 77.7563ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 90.2182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 99.7944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 180.5341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 191.762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 128.1535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 133.9735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 154.4207ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 160.4504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 82.0625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 86.6346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.2382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 72.8439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 86.8886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.4031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.2737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 73.1969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 79.1161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 720.9691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 728.6636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 60.0905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 74.1654ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.6123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 62.3229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 70.8509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 411.6859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 420.7994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/C/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/C/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 82.4444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 89.5315ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.8384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.4225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.1536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.8834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 165.6961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 170.8154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 93.0529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 97.3798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 183.5245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 189.6189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.2454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.0776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 61.4216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 76.4854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 565.9548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 579.2714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 66.4461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IW \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112123910_33968.log b/AMESCoreStudio.Web/logs/stdout_20231112123910_33968.log deleted file mode 100644 index 16e7411a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112123910_33968.log +++ /dev/null @@ -1,212 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5606.9377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5620.598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 79.2123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 86.064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.4081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 102.2296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 220.3358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 229.057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 177.7769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 187.5634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 193.2332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 199.6318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 154.2089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 159.2168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.8673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.2089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 682.9306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 688.1035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 62.2196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 75.762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 324.0565ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 334.4967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 208.7217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 219.6189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 295.8366ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 302.8155ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.8515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.5869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.1396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 317.8644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 191.2617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.0952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 300.1585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 305.8804ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.7374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.1776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 56.2422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 67.1831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 636.5431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 646.0411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 57.6577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 71.8718ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.5846ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 65.6476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 76.7255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 564.2077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 580.7712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 52.6885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112124342_1840.log b/AMESCoreStudio.Web/logs/stdout_20231112124342_1840.log deleted file mode 100644 index d88268dd..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112124342_1840.log +++ /dev/null @@ -1,382 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 7617.9892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 7636.9262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 118.3402ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 124.9849ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 112.1464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 122.3505ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 218.1619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 226.1118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 151.3246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 161.2399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 177.9238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 182.6944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 97.1655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 100.299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.4326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 82.2123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 105.3135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 116.7243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 786.7839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 797.6133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 57.5808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 66.0586ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.9889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.2179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 63.678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 78.5421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 560.365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 571.242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 63.7626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 75.4839ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 90.8456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 100.5396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 159.2222ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 170.1073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 123.179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 133.1756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 478.4122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 489.6412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 66.2806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 74.2182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 70.4123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 77.313ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.6953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 434.1336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 444.6949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.1599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.7597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Appl -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Appl -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 66.5578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 80.5192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.6977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.9368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 399.8073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 406.6003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.4495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.0155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.9309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 318.9602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 493.0921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 500.0608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 73.1707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.5671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.8506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.8368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 329.0105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 160.7202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 171.5888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.6356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.3194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.8749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.0975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 308.2924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 316.749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 156.206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 166.051ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 472.7657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 483.5132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.2762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.0144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.9252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.7088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 309.3855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 321.3835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 185.6429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 196.8174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 649.8496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 696.1111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.2491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.7667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112125616_8896.log b/AMESCoreStudio.Web/logs/stdout_20231112125616_8896.log deleted file mode 100644 index d6dc7a76..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112125616_8896.log +++ /dev/null @@ -1,180 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3192.6091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3206.7013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 62.3736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 71.2883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 82.339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 91.1148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 159.8585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 168.7042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 127.0826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 134.3017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 153.9609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 159.7345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.9512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 82.978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.051ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.4122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Appee -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Appee -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 90.6651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 100.3109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.3346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.9837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/App -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/App -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 55.7753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 65.7393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.1254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 472.3053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 477.6809ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext co \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112134048_15716.log b/AMESCoreStudio.Web/logs/stdout_20231112134048_15716.log deleted file mode 100644 index fb9ebcc4..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112134048_15716.log +++ /dev/null @@ -1,103 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 11447.1327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 11468.8151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 151.1044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 160.1682ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 175.7157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 184.8944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 297.3095ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 309.6159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 223.7522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 233.1923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 174.556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 183.2702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 99.4208ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 108.6386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.0596ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.7891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 688.7641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 701.2845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 34533.6905ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 34538.4698ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 554 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112134708_29064.log b/AMESCoreStudio.Web/logs/stdout_20231112134708_29064.log deleted file mode 100644 index d6c9fbe1..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112134708_29064.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3128.539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3142.588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 77.7255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 82.6684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 72.0042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.5978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 235.1613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 240.2582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 122.693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 126.3731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 187.5438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 191.2255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryU \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112134841_9960.log b/AMESCoreStudio.Web/logs/stdout_20231112134841_9960.log deleted file mode 100644 index 47d0dbaf..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112134841_9960.log +++ /dev/null @@ -1,103 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3417.3343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3429.8421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 80.0193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 100.1038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 100.2358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 104.6205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 236.5436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 241.4453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 173.4039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 146.2804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 150.1554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 78.5318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 82.3245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.3436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.0423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 467.9442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 475.0689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 34388.9913ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 34394.8857ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 554 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.Res \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112135119_1328.log b/AMESCoreStudio.Web/logs/stdout_20231112135119_1328.log deleted file mode 100644 index d7dfad14..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112135119_1328.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3172.1719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3183.7123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 77.2836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 82.5004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.1674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 82.1485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.3715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 170.2401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 129.4051ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 138.4268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 170.4324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.7651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Facto \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112135639_29832.log b/AMESCoreStudio.Web/logs/stdout_20231112135639_29832.log deleted file mode 100644 index fdd1df09..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112135639_29832.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4550.5889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4561.0629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 65.916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 70.7455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 77.962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 83.5147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 152.472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.6076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 123.799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 129.1735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 142.454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 148.0333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUni \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112135730_27000.log b/AMESCoreStudio.Web/logs/stdout_20231112135730_27000.log deleted file mode 100644 index 0de30fff..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112135730_27000.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4648.0175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4669.0992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 65.5146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 70.3333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 80.9809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 88.0018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 167.6878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 178.3358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 138.303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 143.8201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 148.3596ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 156.0322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112135926_23204.log b/AMESCoreStudio.Web/logs/stdout_20231112135926_23204.log deleted file mode 100644 index d585c241..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112135926_23204.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5365.2503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5374.4412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.5406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 68.1776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 95.759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 102.1335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 151.5209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 155.933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 129.3444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 135.9676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 171.1834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.3397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112140055_35984.log b/AMESCoreStudio.Web/logs/stdout_20231112140055_35984.log deleted file mode 100644 index 3ae42e71..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112140055_35984.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3727.7946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3744.2418ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 67.8967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.4156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 64.5851ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 70.0437ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 174.0114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 180.8801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 123.0835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.4465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 147.9439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 153.5186ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Facto \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112140550_19080.log b/AMESCoreStudio.Web/logs/stdout_20231112140550_19080.log deleted file mode 100644 index b78e5cc0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112140550_19080.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4886.0742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4905.3958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 62.4634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 66.1799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 61.6699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 66.3589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 169.4896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 174.3192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 130.5064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 136.9347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.534ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 148.8741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112141520_27044.log b/AMESCoreStudio.Web/logs/stdout_20231112141520_27044.log deleted file mode 100644 index e2d64ca0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112141520_27044.log +++ /dev/null @@ -1,147 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 9859.7967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 9872.9359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 88.31ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 91.9735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 88.1731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.1095ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 206.0357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 212.1999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.4572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 173.507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 154.4256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.9092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 95.2746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 100.5695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.0634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.1111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 587.9921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 591.3568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 29042.3998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 29047.5793ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.ArgumentNullException: Value cannot be null. (Parameter 'errorMessage') - at Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(String key, String errorMessage) - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 564 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.3894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.1432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 284.6158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 290.3577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 202.9489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 212.792ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 292.9808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 299.6503ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTT \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112142000_26844.log b/AMESCoreStudio.Web/logs/stdout_20231112142000_26844.log deleted file mode 100644 index bf293d41..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112142000_26844.log +++ /dev/null @@ -1,330 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3401.2651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3420.8383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 75.8452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 85.6899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 81.8921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 87.609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 160.5956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 166.9527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 123.487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.1178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 157.6635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 164.2453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.1302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.8708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.1028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.9269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 488.104ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 492.7486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 6571.6097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 6578.6732ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.ArgumentNullException: Value cannot be null. (Parameter 'errorMessage') - at Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(String key, String errorMessage) - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 564 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.7324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.1766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 335.5757ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.7692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 214.9195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 308.3582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 315.5049ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 27854.6656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 27859.3328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.0459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.1416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 398.2116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 402.3526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.6995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.4903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 407.0032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 416.9062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 207.4836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 215.2436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 432.8684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 439.4464ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 4007.0658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 4012.2382ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.7385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 44.6838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 384.6649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 391.5405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.8137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.0883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 401.9007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 407.9569ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.6584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.1839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 406.0358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 415.8804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 182.4739ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 192.1998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 432.9008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 443.1964ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 26559.4722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 26566.5631ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Collections.Generic.List`1[AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime]', but this ViewDataDictionary instance requires a model item of type 'AMESCoreStudio.WebApi.Models.AMES.StandardWorkTime'. - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.EnsureCompatible(Object value) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary..ctor(ViewDataDictionary source, Object model, Type declaredModelType) - at lambda_method(Closure , ViewDataDictionary ) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.CreateViewDataDictionary(ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator.Activate(Object page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator.Activate(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112142451_20024.log b/AMESCoreStudio.Web/logs/stdout_20231112142451_20024.log deleted file mode 100644 index b0357e37..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112142451_20024.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3587.191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3604.4839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 70.8225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 77.4967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 82.1256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 91.5519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 173.3507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 127.5601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 133.963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 184.503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 188.7541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 86.8024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 95.7703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.1035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.4262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 458.4667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 470.6536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.5994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.4917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 285.6232ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 292.6276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 190.1778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.6961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 296.2277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 305.1945ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' header \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112142933_14612.log b/AMESCoreStudio.Web/logs/stdout_20231112142933_14612.log deleted file mode 100644 index 173e4e6e..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112142933_14612.log +++ /dev/null @@ -1,162 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 8017.9299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 8029.2322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 76.3197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 79.3193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 75.9732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 80.6185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 204.6581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 211.9906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 163.0175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 171.2102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 175.3344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 179.977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 80.021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.4656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.0613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.5584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 608.534ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 616.5488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.4553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.1395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 303.3493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 308.0371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.4734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 221.2587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 302.9773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 310.3084ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 6683.5504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 6687.6892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 180.2678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 187.5176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.0216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 411.9744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 420.2494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 221.5826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 227.5664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 320.4442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 327.2825ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112151334_14684.log b/AMESCoreStudio.Web/logs/stdout_20231112151334_14684.log deleted file mode 100644 index 0d36bdc8..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112151334_14684.log +++ /dev/null @@ -1,867 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3110.7496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3123.7259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.1573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 75.721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 85.0901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 91.6542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 150.4844ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 156.0238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 148.3992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 154.6364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 163.4043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 171.6255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.4225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 84.6814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.1595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.0484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 551.1596ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 558.7403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.2073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.4626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.0267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 416.3087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 425.9441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.9966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.9634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.1077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 402.1092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 408.3526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.5855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.2172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.6045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.0601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 499.9515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 503.7423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 81.3379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.3987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.1603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 408.6807ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 421.2411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.8768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.2191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.2167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.5302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 399.8948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 406.9329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.6894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.2669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.2393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.7745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 444.8816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 456.242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 86.2719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 91.4299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.0973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Aplle -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Aplle -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 62.0388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 69.1751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.9506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.0483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 406.0099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 415.3452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.2147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.6886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.5237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 384.7537ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 389.658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.4382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.2126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.4223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.3772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 413.344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 418.7428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.4896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.8703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.2479ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.6729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 389.6871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 396.4628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.6328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.7072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.0459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.4361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 405.9221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 418.7892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.4824ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.6684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.5845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.4008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 476.8204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 484.6774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.0081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.0439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.2126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 431.0473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 442.5119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.7982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.7942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.6899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 75.1696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 517.4977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 525.662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.5571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.1989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.4402ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 410.6906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 415.721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.3814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.1426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 381.0952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 398.0679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.1548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.2702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.3936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.5916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 499.0765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 511.6591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17055 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17055 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.5466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 169.2342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 92.688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 109.5389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 309.6155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 320.6166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.8708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.0117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 465.3895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 469.6949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 288.5984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 300.0854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 310.7006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 317.5673ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 4055.2779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 4064.1326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.0668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 419.748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 423.0502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 109.4292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 120.9264ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.6712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.3381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.7555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.9563ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 281.5267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 293.8ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.1492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 300.2566ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 308.4356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 170.6905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.5722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 300.3727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 307.8071ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 179.0288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 192.7381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.6046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 358.5632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 368.7862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 106.6404ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 113.4991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.4528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.9809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 312.0979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 320.1058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.1459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.2524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 298.2458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 311.4632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.8464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.4105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 295.4719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 310.6855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 200.7711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 208.778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 268.7523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 282.7176ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 178.2384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 186.9375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.9097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.3493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 422.4544ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 429.984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 100.2885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 113.9912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.1415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.3345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 298.0345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 307.461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.8677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.9541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 55.3123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 69.7862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.3218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 63.0686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 77.0109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 378.084ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 395.6749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 56.6432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 65.2187ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 708.8966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 720.6237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 409.1429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 417.1539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: Syst \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112173348_9808.log b/AMESCoreStudio.Web/logs/stdout_20231112173348_9808.log deleted file mode 100644 index 2ffb02b9..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112173348_9808.log +++ /dev/null @@ -1,168 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3450.1414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3459.9821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 71.529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 75.0401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 70.3734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 74.3493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 137.9622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 141.9501ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.0838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 124.3259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 141.2684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 68.9152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 74.8219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 62.044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.2451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 420.0922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 424.7663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.8105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.9943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.5145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 327.1608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 341.4588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.7346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.7835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.6309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.0149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 59.7264ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 69.0065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 455.1701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 462.302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.8349ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.0046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 316.8005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 328.9022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.2821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.2369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.8942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/A \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112175021_17928.log b/AMESCoreStudio.Web/logs/stdout_20231112175021_17928.log deleted file mode 100644 index 4784c551..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112175021_17928.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4236.021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4247.0432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 123.4899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 127.3856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 77.8013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 81.5516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.9004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 166.6442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 145.7823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 150.6337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 134.9176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 139.9921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Fact \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231112180046_33292.log b/AMESCoreStudio.Web/logs/stdout_20231112180046_33292.log deleted file mode 100644 index 62d26038..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231112180046_33292.log +++ /dev/null @@ -1,293 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5512.4471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5534.8991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 70.191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 78.2634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 67.4621ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 75.7776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 162.6773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 171.3251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.7618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 122.3992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 150.0542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 154.8241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.2466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.3206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.1646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.3691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 438.9225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 450.1113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.1636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.9618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.5663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 281.3541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 308.4477ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: 'Microsoft.AspNetCore.Mvc.Rendering.SelectListItem' does not contain a definition for 'UnitNo' - at CallSite.Target(Closure , CallSite , Object ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0) - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_1.<b__4>d.MoveNext() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 92 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 89 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.6997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.8796ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.9782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.6519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 301.8569ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 312.635ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: 'Microsoft.AspNetCore.Mvc.Rendering.SelectListItem' does not contain a definition for 'UnitNo' - at CallSite.Target(Closure , CallSite , Object ) - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass27_1.<b__4>d.MoveNext() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 92 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 89 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.0832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.404ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.1388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.6876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 279.187ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 286.4371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.1517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.4835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.8887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.0654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 294.7435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 305.432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.0975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.9513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 270.2456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 282.0039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.0409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.1609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.4827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.1559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 269.6783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 284.1648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sendi \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113012057_31140.log b/AMESCoreStudio.Web/logs/stdout_20231113012057_31140.log deleted file mode 100644 index 86775ebe..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113012057_31140.log +++ /dev/null @@ -1,186 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3710.1398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3719.0301ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 62.1516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 65.2653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 78.2898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 81.2307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.4593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 117.8667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.9038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 118.9891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 107.6503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 110.2055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 140.0868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 144.2265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.9727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.3327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32.6997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 396.6609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 400.1145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 47.5312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 51.2759ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.ArgumentNullException: Value cannot be null. (Parameter 'errorMessage') - at Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(String key, String errorMessage) - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 564 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 9.4044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 12.3122ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.ArgumentNullException: Value cannot be null. (Parameter 'errorMessage') - at Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(String key, String errorMessage) - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 564 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.0625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32.7975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 194.5444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.3212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.6517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.3863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 211.3004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 238.8531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HT \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113012810_1756.log b/AMESCoreStudio.Web/logs/stdout_20231113012810_1756.log deleted file mode 100644 index 3f82754c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113012810_1756.log +++ /dev/null @@ -1,320 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2837.486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2846.291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 101.9276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 104.7466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.8511ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.6828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 146.8713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 150.6183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 149.6897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 154.768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 107.0431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 109.9375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 66.5909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.6789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.0464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.8363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 367.6797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 370.4229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.8104ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.0576ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 179.6722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 182.3275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 135.3996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 137.5026ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 201.1419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 203.6196ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.5305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.6693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.2994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.6914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 172.7927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.3025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.4083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 180.2658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 182.6709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 103.7359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.3498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 178.0729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 181.3425ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.6913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.2504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.9037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.2177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.4892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 186.8085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.5351ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.9614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 213.652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 216.676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 142.1575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 144.8071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.7725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 192.5233ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.3411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.8981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.5856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.1097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 200.0675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.7632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.3582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 192.9401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 195.6608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 123.1851ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 125.3531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.7205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 184.2965ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.9584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.4291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.4478ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.4201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 186.4925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.1667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET h \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113014032_21192.log b/AMESCoreStudio.Web/logs/stdout_20231113014032_21192.log deleted file mode 100644 index 3a8891d8..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113014032_21192.log +++ /dev/null @@ -1,619 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2957.0573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2965.8335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 51.9709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 54.7083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 48.218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 51.5158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 95.7593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 99.1265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 75.5002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 79.0911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.9834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.4619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.7275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.1971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.7638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.3783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 251.7281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 255.6343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.2791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.5722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 126.8042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 129.7042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.4056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 102.6309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 110.0554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 112.7204ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.9223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.5676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.6147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.6228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 127.7436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 130.4677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.4735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.9153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.0436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 127.6595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 100.6665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 103.4818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 118.1192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 120.645ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.2938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.6306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.8291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.2398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 138.6316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 141.9022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.9957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 171.29ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 174.6203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 83.3354ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 86.1092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 128.0641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.4355ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19782.9862ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19786.1331ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 72 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003(String unitNo, Int32 lineID, String modelname) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 496 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 103.4518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 105.9466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.8484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.6475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 105.0802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 108.7113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.4786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.1385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 107.153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 110.0718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.3808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.5844ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.6272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.4568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.5806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 102.2612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.73ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.3886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 101.5509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 104.4667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 84.4193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 87.3791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 124.121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 126.4212ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.4508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.9256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.1665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 106.5848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 109.743ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.9193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.0703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 94.2698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 97.3177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 62.8481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 65.9952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 103.3953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.0333ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.7001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 172.6266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.0277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.8877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 173.7785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 176.8507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.2513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.5571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.1944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.6326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 113.0541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 117.7803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.7807ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.0746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.4376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 101.0874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 103.6656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17045 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17045 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 91.7962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 95.7602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.0373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.6473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 106.84ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 109.7345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.8617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.2902ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 166.3999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 169.0325ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 81.2641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 84.0716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 126.8276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 129.3527ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 199.8113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 202.223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.7611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 102.2214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.2182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.6592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 90.2765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 92.9864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.3653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.5977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 136.0996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 139.6969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 77.8905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 80.3872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 118.928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 121.9472ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http:// \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113022123_21772.log b/AMESCoreStudio.Web/logs/stdout_20231113022123_21772.log deleted file mode 100644 index f66cf468..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113022123_21772.log +++ /dev/null @@ -1,1092 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3758.7005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3768.7989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 61.4191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 64.4775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 63.1837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 67.5215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 136.8653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 140.6532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 97.3553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 101.0769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 103.0137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 106.1284ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.4941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 46.2314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.2784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 87.3917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.7744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32.7758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 351.9422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 355.8863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.3017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.5916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.7639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.0737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 202.1631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.7032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 194.9098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 198.0527ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1937.8289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1941.372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 145.558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 148.052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19181.9302ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19185.6101ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 72 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003(String unitNo, Int32 lineID, String modelname) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 496 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 144.8959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 147.6328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.9585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.7451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.9653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 184.8314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 6.7042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 9.7486ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.ArgumentNullException: Value cannot be null. (Parameter 'errorMessage') - at Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(String key, String errorMessage) - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 564 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.4419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.1876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 183.2105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.6094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 129.1717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 134.9891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 191.7286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 194.7315ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18988.2111ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18990.9361ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 72 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003(String unitNo, Int32 lineID, String modelname) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 496 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 264.693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 267.6469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.5695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.7715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.1182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 177.6291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.8314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.8532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.8625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 174.2367ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 116.9061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 119.5689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.4661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.4619ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.2687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 176.2667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 179.3321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.0582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.6797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.4602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.4675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 166.4507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 169.6914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.2974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.6055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 171.0761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 130.2812ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 132.6128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 215.0872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 217.8862ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 13685.7703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 13688.4824ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.6361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 254.294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 260.1743ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 82.3918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 88.0594ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.3081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.3094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 39.2107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 42.196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.1886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.1221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 39.1761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 42.0861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.3057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.2509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 197.021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 199.3524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17061 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17061 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 56.505ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 60.2494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.1722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.8837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.3713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.0595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17060 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17060 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 60.1501ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 68.06ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.6499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.5755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 117.3976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 124.3442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17062 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17062 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 55.152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 59.1487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.8143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.3313ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 40.1822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 43.2338ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.4725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.8611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 40.6282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 46.2933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.1245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.7749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 41.8997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 44.7765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 225.7179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 232.2105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 41.2059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 43.739ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 5888.0688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5892.0925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.8419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.5068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 204.6348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.3936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.9872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.0676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.9524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.0075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 176.9872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.2104ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.9511ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.3946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.7268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 167.0007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 169.5677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.9842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.5963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.7405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.8581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 157.3285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 161.0175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.1765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.2056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.7947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 238.4391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 241.8451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 5.1181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 7.873ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.ArgumentNullException: Value cannot be null. (Parameter 'errorMessage') - at Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(String key, String errorMessage) - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 564 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3.6054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 6.6412ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.ArgumentNullException: Value cannot be null. (Parameter 'errorMessage') - at Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(String key, String errorMessage) - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 564 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 7.2742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 11.3408ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.ArgumentNullException: Value cannot be null. (Parameter 'errorMessage') - at Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(String key, String errorMessage) - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 564 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19011.2491ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19013.7902ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 72 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003(String unitNo, Int32 lineID, String modelname) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 496 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 99.165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 102.3191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.2679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.1474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 101.3881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 105.0402ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.8051ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.4652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 90.3366ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 93.0924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 57.1099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 60.2023ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 102.3428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 105.6074ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.7943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.3887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 92.3672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 95.4859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.5469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 92.4077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 95.5534ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 61.7276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 65.422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 91.7692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 95.1672ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.2772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.2186ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 90.3049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 93.5144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.3149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 13.8762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 10.6548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 13.6379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 80.6813ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 83.0861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18983.5096ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18986.3117ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 72 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003(String unitNo, Int32 lineID, String modelname) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 496 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 136.9133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 139.8942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.7489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End proce \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113052817_15040.log b/AMESCoreStudio.Web/logs/stdout_20231113052817_15040.log deleted file mode 100644 index 1807dd03..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113052817_15040.log +++ /dev/null @@ -1,401 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3310.4584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3319.2212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 44.1174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 46.9832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 45.5909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 49.4133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.6249ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 87.8327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 72.183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 75.2386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 70.45ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 73.3926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 39.2294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 44.0839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.4683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.9829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.7462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.8088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 275.033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 278.7405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.6155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.9058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 94.958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 97.8085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 85.3964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 88.3116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 108.4653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 111.96ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1500.3363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1502.9882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 56357.8085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 56360.3885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1483.1013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1486.3901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.6061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.1587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 95.1765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 97.6879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.6425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.4027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 130.8883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 133.4908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.4279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.0395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 136.9083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 139.3098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17070 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17070 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 55.1893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 58.9999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.8368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17070 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17070 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 133.9563ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 137.2399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 145.6449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 149.0451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17071 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17071 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 54.2515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 59.2022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.1728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 175.0067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 177.8688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17072 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17072 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 64.639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 68.4864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.5144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.3363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 127.239ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 129.9955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17073 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17073 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 54.3822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 57.8034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.7224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.5218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 44.6621ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 48.2253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.5958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.8591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 169.1531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 172.0985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17076 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17076 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 64.6399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 68.2498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.5806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.0455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 180.6005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 183.4595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 31.3735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 38.2754ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.ArgumentNullException: Value cannot be null. (Parameter 'errorMessage') - at Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(String key, String errorMessage) - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 564 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 9.5576ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 13.1342ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.ArgumentNullException: Value cannot be null. (Parameter 'errorMessage') - at Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(String key, String errorMessage) - at AMESCoreStudio.Web.Controllers.WHSController.WHS003CSaveAsync(List`1 model) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 564 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHand \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113054142_11804.log b/AMESCoreStudio.Web/logs/stdout_20231113054142_11804.log deleted file mode 100644 index eaf5b12c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113054142_11804.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3498.6554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3507.2415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 52.2762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 55.017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 50.7495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 53.4653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 106.7552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 110.1138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.8078ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.8879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 98.1407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 101.8009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 52.638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 59.403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.6073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.7608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.2875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.2462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 340.6039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 343.9152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.4982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.4909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 165.7402ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 168.3876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 128.0045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 130.958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/- \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113054617_32540.log b/AMESCoreStudio.Web/logs/stdout_20231113054617_32540.log deleted file mode 100644 index af89d7d1..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113054617_32540.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3127.4373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3136.635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 54.1145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 57.2736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 55.1111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 59.2183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.4335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 122.6589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.6555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.7352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 95.7723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 98.6871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 46.5843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 49.9293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.6419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.7659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.2134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.3321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.5732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.7609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.3124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 176.546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 179.1781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 141.5897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 151.609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-9 \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113054848_19584.log b/AMESCoreStudio.Web/logs/stdout_20231113054848_19584.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231113054937_25828.log b/AMESCoreStudio.Web/logs/stdout_20231113054937_25828.log deleted file mode 100644 index fc38e824..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113054937_25828.log +++ /dev/null @@ -1,147 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2685.5713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2694.5222ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 42.2944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 45.1871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 47.9165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 51.1547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 87.2338ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 75.5888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 79.4042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.7693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.4057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 71.8625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 76.7963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 20.7389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 23.8591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.8552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.5206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.5356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 263.139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 266.4932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17077 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17077 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 6570.2211ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 6572.8311ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 561 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.5531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.1993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.9705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 103.0276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.Logic \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113055124_37188.log b/AMESCoreStudio.Web/logs/stdout_20231113055124_37188.log deleted file mode 100644 index 46b47bee..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113055124_37188.log +++ /dev/null @@ -1,322 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3597.8357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3607.07ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 51.2465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 54.3322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 54.5186ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 57.9132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 114.829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 117.9577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 94.6543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 97.4312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 95.1179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 97.7403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 44.8198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 48.2692ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.4442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.3519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.1453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.3227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 344.8004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.4563ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17077 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17077 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 4413.1977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 4416.8946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.8808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.4666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 162.4551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.0066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.4655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.7019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 177.7515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.6124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.9148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 185.4948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 188.3332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.5149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.1401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.9095ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 163.0528ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.9244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.5832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.3685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 45.0896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.8405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.6439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 39.357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 42.3703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 191.0991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 194.1467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 39.2007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 42.4335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.9124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.4282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 36.3178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 38.8017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.7696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.0356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 35.4522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 38.5417ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.4654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.1258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.9552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 40.2191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 42.9013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.6526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.5981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 39.873ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 42.3401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.8765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.1247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 40.26ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 42.7735ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.3388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.5648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.2768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 40.4053 \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113055938_36496.log b/AMESCoreStudio.Web/logs/stdout_20231113055938_36496.log deleted file mode 100644 index eec0f7d3..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113055938_36496.log +++ /dev/null @@ -1,271 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3013.659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3023.2829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 43.5056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 46.5709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 44.9063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 48.2307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 87.8508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 90.8639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 75.3877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 78.1959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 67.8484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 70.456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.3194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.6169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.4217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.6798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 301.1969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 304.2073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.6651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.5708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.8601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 35.5232ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 136.6426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 139.8227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.2573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 35.3932ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.7997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.1996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.8193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.8024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 33.7354ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 36.2979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 119.2158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 122.546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 35.621ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 38.3299ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3322.7742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 3325.8053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.186ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.8973ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 120.3179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 122.6806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17078 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17078 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 48.8446ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 52.0942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.6606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.4481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 101.2311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 103.5152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17079 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17079 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.1532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 35.3074ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.7559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.7837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.2059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.6328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17080 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17080 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 30.504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 33.6495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.5582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.1623ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 65.312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 67.7527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17081 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17081 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 33.9428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 37.8604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.5647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.6844ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -in \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113060430_13252.log b/AMESCoreStudio.Web/logs/stdout_20231113060430_13252.log deleted file mode 100644 index ee9cb181..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113060430_13252.log +++ /dev/null @@ -1,541 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4048.538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4057.6545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 51.9953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 55.0289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 68.8541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 72.1244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 126.142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 128.9995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.9879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 119.2412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.3434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 164.096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 77.4049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 81.6758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 34.633ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 40.072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.7117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.7689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.8606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 347.4602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 350.7744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.3698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.2971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.354ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.2192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.65ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 185.5204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.6134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.8325ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.9871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.7931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 180.2522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 183.1316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.3647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 158.1365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 160.7018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.9976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 167.5329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 173.3933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 740.6545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 744.2948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.3736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.7945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.4419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.7244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.4728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.0073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 41.3688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 43.8966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.1548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.6254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 55.6174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 59.1083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 268.4573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 273.4584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 40.7875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 44.6929ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.9842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32.5671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.4987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 165.044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.9496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 956.4838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 959.868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.0567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.7907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.4266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 180.3118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.7027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.7863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.2132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.8034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 179.9029ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 183.2162ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2691.9301ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2700.9725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.2936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.8879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 161.3939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 163.9015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 48.5586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 51.5073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.2639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.2014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 165.6153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 168.4917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 100.6138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 105.3794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.1822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.7958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 199.2162ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 201.841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 98.3385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 101.425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.8378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.4011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 185.8451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 189.7194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.4184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.4407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.6397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32.9085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/C/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 35.1851ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 38.2312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 313.6223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 316.0617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.3296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.0018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 190.1235ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 192.6348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 80.1474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 84.0183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.4726ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.6246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.3143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.0007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.8469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.3794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 228.0996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 231.2883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 153.9678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 156.6005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 204.7128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.4811ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.4714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.4127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 172.7456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.Cl \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113062929_32028.log b/AMESCoreStudio.Web/logs/stdout_20231113062929_32028.log deleted file mode 100644 index 3ad7c57a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113062929_32028.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3527.9215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3537.2656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 44.1205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 47.3128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 47.1087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 50.8894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 108.5689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 112.2265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 85.2879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 88.5018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 76.8914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 79.9289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 37.9316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 43.7253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.7345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.0141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.5052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.8933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 272.508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 275.7133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.3341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.0001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 39.052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 41.8002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 122.8137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 126.0035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113063608_32216.log b/AMESCoreStudio.Web/logs/stdout_20231113063608_32216.log deleted file mode 100644 index 9ff7d70e..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113063608_32216.log +++ /dev/null @@ -1,162 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2774.9759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2784.1296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 80.4283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 83.1622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 85.2164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 88.5507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 150.0246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 153.4326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.1852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 94.9298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 96.4911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 100.2216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/NgInfo/GetNgInfoByStatus4REP001?status=0&factoryNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/NgInfo/GetNgInfoByStatus4REP001?status=0&factoryNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 144.2863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 147.376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.0397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.7778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 348.6381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.9699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.5333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.4336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 44.1916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 47.684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 250.9319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 253.9498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.9063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 46.2159ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.2629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.3834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 172.5556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.8552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.8132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.0392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 160.5612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 163.4002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 114.7321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 117.2339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003Absolute \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113113000_25760.log b/AMESCoreStudio.Web/logs/stdout_20231113113000_25760.log deleted file mode 100644 index c2e87d57..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113113000_25760.log +++ /dev/null @@ -1,549 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 6375.3887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 6388.6927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 145.3633ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 151.3555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 98.5822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 103.6454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 230.8698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 239.6835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 201.493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 207.8294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 190.9791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 197.6038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 98.6192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 102.6287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.3447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.8141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 673.0185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 686.258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 230.4194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 236.0011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.2337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.9681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 319.1784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 335.8834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.2689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 149.8512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 156.9388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.2523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 297.0265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 307.9495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 150.2625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 162.5858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 184.5577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 193.8229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 152.787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 160.8081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.2526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.3691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/P/1009/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/P/1009/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 36.4917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 43.229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.6464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.1602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 314.1616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 328.5676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17082 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17082 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 86.4036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 100.1854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.6247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.92ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 282.8192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 296.0586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 190.5712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 198.5766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 96.5099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 101.2045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 322.0147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 327.7705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.2999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.3106ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 311.7986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 322.3928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 159.5053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 164.3759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.7386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.6447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 374.2016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 384.1322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 149.967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 158.1193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 175.6236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 185.709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.5524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.7529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/P/1009/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/P/1009/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 43.8042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 58.8685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.8439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.1579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.6742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 348.8214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.9431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.4206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 69.0783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 82.4178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.8534ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.5964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.5239ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 342.0459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 147.7942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 158.1714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.0151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.9147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 327.685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.6103ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.2312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 275.618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 287.7075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 242.7216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 250.6789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 306.2222ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 315.6093ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 159.4989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 167.2746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.5357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.0404ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.0093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 309.1507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 322.8853ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 143.981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 151.3579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.0116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.4046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.9487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 336.9007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 88.3378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 103.0795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 406.9154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 413.0129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 178.7466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 187.8163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 356.4768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 368.8366ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.8163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.2659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.5734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 324.1329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 338.4425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.0405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.1144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.3799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AME \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113120242_14720.log b/AMESCoreStudio.Web/logs/stdout_20231113120242_14720.log deleted file mode 100644 index 887a26c0..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113120242_14720.log +++ /dev/null @@ -1,332 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3091.5289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3102.5717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 71.1488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 74.1779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 60.6008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 64.3911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 157.5095ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 162.8481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 117.9415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 121.9785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 153.0612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 158.3866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.3855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 75.1456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 203.0648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 207.5417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 78.8035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 87.0421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 396.9847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 401.8247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 165.467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 171.9663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.6083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.6377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 315.3464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.9648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.0751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.6242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 221.7046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 233.6223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.3465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.2547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 295.6619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 304.4833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.3699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.4643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 163.2129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 174.5103ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.1494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.0385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 312.3745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 319.245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 201.7902ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 212.2698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.8969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.7072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 157.2797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 165.6703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.7688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.0953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.7625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 346.8469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 82.5826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 91.1066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 273.5598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 279.6385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 224.5135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 234.1426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 305.206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 312.5851ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 88.503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 95.8302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 182.6163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 197.3618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 460.12ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 472.5737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.1899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 281.172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 288.5953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.6363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.3298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.8277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.7675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.4759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 342.0185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 356.9028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 142.1398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 150.7586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0. \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113121653_14200.log b/AMESCoreStudio.Web/logs/stdout_20231113121653_14200.log deleted file mode 100644 index 59777fb8..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113121653_14200.log +++ /dev/null @@ -1,113 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3312.376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3320.9064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 59.5566ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 63.027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 59.8077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 64.4574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 188.9687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 193.5974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 159.8815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 165.9183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 210.0328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 214.363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 68.8806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 74.1035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 86.7941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 99.3336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 8178.3094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 8183.6671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 205.1885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 212.3886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.7411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.6256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1669.8265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1678.5204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 140.1131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 150.4189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113122024_13944.log b/AMESCoreStudio.Web/logs/stdout_20231113122024_13944.log deleted file mode 100644 index 6eaf9a68..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113122024_13944.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3392.7094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3408.1884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 105.4049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 112.8221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.0785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 82.4492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.3176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 166.7917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 133.676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 142.6486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 171.0364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 176.5267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Fact \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113122340_10020.log b/AMESCoreStudio.Web/logs/stdout_20231113122340_10020.log deleted file mode 100644 index 82938f40..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113122340_10020.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4522.7947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4536.1213ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 67.4384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 72.2855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 79.7567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.1252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 141.7727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.6694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 125.3352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 134.3643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 152.127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 156.4778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Factor \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113123040_27548.log b/AMESCoreStudio.Web/logs/stdout_20231113123040_27548.log deleted file mode 100644 index 0c9c64dd..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113123040_27548.log +++ /dev/null @@ -1,146 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 7587.7748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 7602.9394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 79.3783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 82.0639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 104.065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 112.9717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 216.6215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 229.1169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 202.5383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 210.7981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 179.2194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 186.3954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 93.0802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 97.607ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.5215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.9881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/Null -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/Null -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.2961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.8666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 11273.2919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 11283.9858ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '>' cannot be applied to operands of type 'System.Collections.Generic.List' and 'int' - at CallSite.Target(Closure , CallSite , Object , Int32 ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at CallSite.Target(Closure , CallSite , Object , Int32 ) - at AspNetCore.Views_WHS_WHS003.b__28_0() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 26 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.3327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 170.9121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 177.3829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.7655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP re \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113123359_14216.log b/AMESCoreStudio.Web/logs/stdout_20231113123359_14216.log deleted file mode 100644 index 0afe8405..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113123359_14216.log +++ /dev/null @@ -1,231 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4237.0404ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4256.7246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.4553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 68.4102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 62.1112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 70.9081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.4604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 166.0173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 111.5556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 119.4255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.3798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 149.7888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 68.9504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 73.6374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 84.9308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1706.7053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1711.2733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 146.7329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 150.9769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.2183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.9147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 177.8199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 182.6625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2271.1294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2278.2043ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '>' cannot be applied to operands of type 'System.Collections.Generic.List' and 'int' - at CallSite.Target(Closure , CallSite , Object , Int32 ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at CallSite.Target(Closure , CallSite , Object , Int32 ) - at AspNetCore.Views_WHS_WHS003.b__28_0() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 26 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.6311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.3008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 346.5199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 355.4105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 162.9214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 173.6616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.3241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.6175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 171.9632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 177.5874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 53948.718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 53956.6063ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '>' cannot be applied to operands of type 'System.Collections.Generic.List' and 'int' - at CallSite.Target(Closure , CallSite , Object , Int32 ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at CallSite.Target(Closure , CallSite , Object , Int32 ) - at AspNetCore.Views_WHS_WHS003.b__28_0() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 26 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalH \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113123709_11604.log b/AMESCoreStudio.Web/logs/stdout_20231113123709_11604.log deleted file mode 100644 index 20794eb2..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113123709_11604.log +++ /dev/null @@ -1,113 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3133.3148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3154.8369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 67.3203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 75.0985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.6045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 82.4683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 167.1838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.9202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 142.2235ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 148.636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 152.5141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 156.1561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.7115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.5901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.9797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.0582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3221.4774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 3226.0148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 155.7507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 160.536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.3098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 180.7258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 192.7444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1894.1389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1898.5603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113124649_3348.log b/AMESCoreStudio.Web/logs/stdout_20231113124649_3348.log deleted file mode 100644 index 92660e87..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113124649_3348.log +++ /dev/null @@ -1,387 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5031.3442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5039.4483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 81.7413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 84.7728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 159.1949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 166.6731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 272.6149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 276.9759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 164.9793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 170.7815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 206.81ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 210.6286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 109.2597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 113.3763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.5984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.2999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 6501.656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 6509.6018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 177.6878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 186.8229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.6975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 215.6433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 221.3083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 377.8454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 388.7109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 96.6536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 108.3774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 415.6608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 424.7292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 353.709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 359.1955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexLineID.Value/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexLineID.Value/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 95.7164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.915ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 247.8804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 252.8445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.2718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.5226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 158.8584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 170.1469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 306.3922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 311.1131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.1029ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.3149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 169.5968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 174.2014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.5031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.3748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 177.0632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 185.9807ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 356.9836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 361.7005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 161.3189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 165.3605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 154.6073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 161.8508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 203.2989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 209.2ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 412.616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 418.5979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.3444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.9924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 498.4566ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 511.5389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.1588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 102.9906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 155.3646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 162.944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 329.0187ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.8003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 350.8224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 356.9791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 195.6709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 200.4776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 235.6857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 243.7631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 72.644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 76.2281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 72.3992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 82.4848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 169.0122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.0137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.2361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 93.2712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 152.5987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 157.7423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 680.5034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 686.8301ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.4219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.9342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 391.6289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 398.1728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 71.8826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 102.4694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCo \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113125905_10004.log b/AMESCoreStudio.Web/logs/stdout_20231113125905_10004.log deleted file mode 100644 index b6ba1af6..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113125905_10004.log +++ /dev/null @@ -1,926 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3185.8974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3203.3813ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 72.553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 81.0907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 80.5037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 84.9809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 231.343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 237.3709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 134.0117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 141.4559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 193.595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 200.2156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 71.7937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.813ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 526.8787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 536.0534ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 182.1027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 190.3123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.6043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.6179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 147.3551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 156.1294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 425.3755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 434.9096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.7967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.7397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 170.0371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 177.246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.8617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.1508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 154.4118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 160.8164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 291.1871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 303.3966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 106.5912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 118.6133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.3836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.2854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 103.5507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 108.6309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/I/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/I/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 52.2567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 59.8409ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.b__32_3() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 40 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.b__32_0() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 35 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.2304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.8914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 160.5776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 169.321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 428.0311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 435.2502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.7405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.7861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.6391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 292.7849ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 301.968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.01ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.5343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.8472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.3199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.7114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.7319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/F/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/F/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 228.2192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 241.4348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.7779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.6444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 306.7989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 313.9257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 169.7377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 183.8828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.0793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 171.8186ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 182.0906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 281.9883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 287.6667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 193.6712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 197.6561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 150.601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 161.4474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 138.1786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 146.3887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 158.2714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 165.453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 191.8032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 201.3421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.3538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.8518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 136.1434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 149.0426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/D/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/D/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.7113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 225.2128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 179.6288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 186.8258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.2425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.6987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 148.0978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 161.0817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 300.2879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 311.3775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.2751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.3753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 155.5912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 163.7428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.9979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.0976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 141.3529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 150.41ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 353.7543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 366.194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.8277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.3879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.9923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.6218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.4637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 208.345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 217.5146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.0313ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.0018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 153.2534ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 157.6211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 293.7246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 298.2787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.5297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.5387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.8888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.1978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 459.5288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 467.6956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 130.9273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 139.8382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 81.8125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 86.3568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 188.9477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 200.0154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 323.3612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 334.3954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.3351ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 175.8076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 182.3047ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.4473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.9196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 157.4618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 174.4271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 349.1375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 360.9435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.5155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.3802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 176.4019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 185.7659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.9599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.8797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 151.9361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 162.2513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 317.415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 331.9439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.0941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.7589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 445.4672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 459.7376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 67.3403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 73.1553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 54.2595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 63.6658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.2573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 139.1995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 154.9898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.6832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.8368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 137.182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 152.3056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.3727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 346.7532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.6107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.9231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.1225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.8096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 161.8662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 171.5116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.0318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 148.5636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 162.0109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 314.5294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 329.5139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.6941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.0123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.6309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 133.0122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 140.8483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 297.6401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 302.1905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.0622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.6956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 139.8978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 149.0378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.6016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 133.2274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 148.7751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 372.6521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 382.7328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.5317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.4638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 206.3151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 219.333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.8142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 111.5055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 120.4833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 345.3841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.1878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.0428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.9674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 131.7748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 136.8583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 86.9893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 101.4995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudi \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113133435_30468.log b/AMESCoreStudio.Web/logs/stdout_20231113133435_30468.log deleted file mode 100644 index 1d08cfbf..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113133435_30468.log +++ /dev/null @@ -1,281 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3552.1069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3570.5202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 66.1481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.7866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 79.6122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.1028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 157.6658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 163.0241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 172.149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 180.6398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 162.2169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.7432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.5292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.6932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 227.7525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 236.3504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 85.5209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 97.7662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 164.2151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 174.7605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 479.8774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 488.0592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.9438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.9632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 152.4582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 162.6981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.1315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.7847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 170.1636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 183.1455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 270.0203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 280.4479ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 177.0866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 186.1907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.1483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.6279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 197.752ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 206.4932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.5019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.0476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 145.8052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 150.6082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 289.5977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 301.7292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.0826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 90.2891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 155.9126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 165.6652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.5914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.2816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 154.6272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 165.9059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 397.941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 409.9351ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.7419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 87.4657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 179.8916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 188.3272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.1838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 191.3007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 197.2992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.3052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 351.2589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.2404ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.1422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 133.8216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 148.6502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCore \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113134650_29756.log b/AMESCoreStudio.Web/logs/stdout_20231113134650_29756.log deleted file mode 100644 index 3ca10178..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113134650_29756.log +++ /dev/null @@ -1,170 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4626.6043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4642.1659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 65.5432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 70.6224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 61.105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 64.8446ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 157.8667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 167.0922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 118.586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.7828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.7942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.1478ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 73.3704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.1832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 265.8285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 269.8968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.5293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.5083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 170.2795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 179.9933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 416.8253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 420.8993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.7471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.1302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 179.1236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 188.8486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 118.4614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 134.189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 143.3845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 152.9062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 277.9648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 290.2073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.2096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.1984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 145.4108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 155.3675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.8668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 71.5199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 152.8891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 164.9158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET h \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113135836_23412.log b/AMESCoreStudio.Web/logs/stdout_20231113135836_23412.log deleted file mode 100644 index c140ff97..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113135836_23412.log +++ /dev/null @@ -1,259 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3385.3168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3400.8398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 95.0706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 103.1355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 68.2714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 73.1488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 168.5582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 177.5971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 120.6143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 125.8474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 172.8303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 177.7157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 67.8625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 75.1903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 204.5723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 209.3494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.8406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.1472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 186.5335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 196.5808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 396.0088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 400.7051ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '==' cannot be applied to operands of type 'string' and 'int' - at CallSite.Target(Closure , CallSite , Object , Int32 ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at AspNetCore.Views_WHS_WHS003.b__32_0() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.4362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.2683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.6782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 142.0346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 156.1753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 102.4908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 113.272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 147.7443ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 155.126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 326.3182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 334.063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.5754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.7747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 143.2915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 149.7391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.3721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 179.9032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 190.7662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 346.15ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 359.9489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.3327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.9118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 143.936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 159.4399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 73.396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 84.1229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 482.4225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 490.4263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.0593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.6904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0. \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113141314_12320.log b/AMESCoreStudio.Web/logs/stdout_20231113141314_12320.log deleted file mode 100644 index 6e80745a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113141314_12320.log +++ /dev/null @@ -1,114 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3319.9695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3331.5854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 65.3561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 68.5405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 80.34ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.2234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 201.3339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 205.4828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 146.058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 151.0006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 237.2054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 241.2439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.7231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 74.6009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.9056ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.0054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 538.473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 542.5213ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.4677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.0869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.5745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 277.8087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 295.7452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.7912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP r \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231113143650_15872.log b/AMESCoreStudio.Web/logs/stdout_20231113143650_15872.log deleted file mode 100644 index ad5ddd0c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231113143650_15872.log +++ /dev/null @@ -1,1409 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4339.6023ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4347.2231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 100.5136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 103.6622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 59.8622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 63.9247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 149.5321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 153.1667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.1439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 149.1645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 162.3038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 167.9588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.6916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.9459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 230.0972ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 238.8978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.4165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.0974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 137.4965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 151.0485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 403.1547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 406.7102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 367.9877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 372.1348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 71.5543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 144.2039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 148.6063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.2722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.0785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 141.4268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 147.1835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 283.7065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 293.0547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 295.229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 299.2491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 91.5807ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 98.2625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 135.4342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 140.9125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 325.8243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 329.8869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 333.7745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 337.7888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.1517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.3619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 203.3211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 211.0941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.8027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.4456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 139.4309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 147.168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 333.9616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 340.5257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 325.2642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 332.0536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.1258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.3712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 345.3904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 358.1302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.2002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.8517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 202.0888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 214.7879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 576.2143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 586.8559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 310.5493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 317.813ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 179.0899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 183.8452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.5709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.6319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 172.0974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 178.3967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.5509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.3244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 349.3913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 354.7231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 120.4606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 131.6412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 102.2362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 108.2445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.3651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.8262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 136.7903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 142.1111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 68.087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.7793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 135.4302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 143.5835ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 298.29ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 303.3807ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 326.1126ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 331.6154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.3231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.4062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 152.5131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 159.4923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.9551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.8011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 135.7413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 146.2612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 323.561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 331.697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 309.4931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 317.4881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.9115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.3484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 149.2894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 165.6007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 62.1456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.1693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 138.9985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 155.2771ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 311.5185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 317.5447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 308.9411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 314.8512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.2924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.6967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.0797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.7587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 170.6352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 179.4192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.7499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 135.7332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 147.5382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 314.3657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 327.9109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 364.8245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 369.1182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.3118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.6412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 152.8824ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 168.4716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.6802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 140.9251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 149.5451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 294.5291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 302.227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 293.3814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 299.5229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 96.5665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 100.0108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 214.1477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 226.5518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 119.0134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 134.0904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 298.0764ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 307.4582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 553.4775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 560.7135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 717.4734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 723.762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.4547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.8756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 179.6294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 188.8321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.0298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.5285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 136.9962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 149.8489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.2084ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.9053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 161.993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 169.6263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 315.6602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 330.911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 346.142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 353.9252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.3622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.6863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 169.8055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 175.6999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.6182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 135.6282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 147.8946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 323.1298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 334.7717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 344.9541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 350.5825ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.01ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.4082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 151.0418ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 157.6175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.2253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.9899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 136.3073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 142.827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 275.2686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 285.953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 317.5398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 323.1635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.3049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 148.253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 158.7272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.6027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 142.8236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 149.9017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 319.8634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 329.2986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 320.1031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 325.1088ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.3867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.13ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 71.6969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.2215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 76.6339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 85.1628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 357.5345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 368.9247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 333.4855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 339.7392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.4133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.0601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.9023ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.9106ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 312.1795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 324.5783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 312.407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 316.8829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.6864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.8622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.4484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 296.2363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 307.0759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 357.1932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 362.0856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.6495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.2411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.9564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.3326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 323.025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 335.396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 317.4453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 324.8843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 328.4542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 335.422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 311.1856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 316.5838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.5481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.2802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.7475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 261.7793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 270.4803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 299.6761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 305.5895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.8169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.7085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.6681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.7429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 72.6034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 83.0174ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.b__31_0() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 50.5157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 53.298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 42.0603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 48.0518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 94.4822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 98.701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 241.3438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 247.73ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 43.5395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.7255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 50.8571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 94.482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 274.3038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 277.6107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 37.5723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 42.0101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 95.4222ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 100.915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 100.1243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 104.4514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 124.2282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 128.3728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 80.1944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 110.9415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 86.0282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 116.3021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 125.8926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 129.7279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.3812ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 122.4174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.5703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.3102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 87.6999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 101.776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 343.4622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 368.9666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 374.117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.1066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.0736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 405.4726ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 411.6018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 92.2865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 98.4305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.1789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.5766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 102.4664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 111.3361ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 79.5335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.6326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.5655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 62.4648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 66.9205ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.b__31_0() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.2693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.2012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.6711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.3172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 292.9ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 299.3412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 379.0379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 385.23ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.3468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 44.4342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.9764ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.6705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 349.2495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 362.2239ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 347.2878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 353.1134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17077 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17077 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 116.8722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.7843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.8234ms - OK -info: System.Net.Http.HttpClient.AME \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231114012913_17556.log b/AMESCoreStudio.Web/logs/stdout_20231114012913_17556.log deleted file mode 100644 index 6c7f7059..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231114012913_17556.log +++ /dev/null @@ -1,1270 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3775.8672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3784.7855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 64.188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 67.3822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 82.2656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 86.4858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.3064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.4182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 103.6646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 107.8833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 151.8355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 155.151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 95.016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 99.2837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.5105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.1598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.8285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.2382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 441.4283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 444.978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 223.9001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 226.7012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.6438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.5092ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.8369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.6259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.8203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.0889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.4229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 73.1727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.3119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.0029ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.3183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.7485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 94.656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 100.0455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.7866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 91.7713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 95.7947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 197.9847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 200.9693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 302.6322ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 305.1879ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17082 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17082 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 97.3299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.4983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.3498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 110.4263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 114.8791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 181.0833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 183.628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 34.6341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.8671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 129.8964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 132.9177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 225.0521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 228.4782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 187.8335ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 190.999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17082 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17082 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 75.5115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 79.3657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.3262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.9883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 133.076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 136.2162ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 235.6806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 238.5877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19074.5071ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19077.2397ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 72 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003(String unitNo, Int32 lineID, String modelname) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 496 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 149.3891ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 152.5963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.6866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.9036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 244.1597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 246.8276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 85.8978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 371.1045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 374.3295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17082 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17082 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 25.7279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 28.7912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.7668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.5613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.2162ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.8888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 45.0963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 47.9295ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.b__31_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.3308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.8671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.2345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 296.0795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 299.7105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.3101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.4592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 189.0234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 192.0991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17082 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17082 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 41.4993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 46.17ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.4697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.9438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.0148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.0349ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.2026ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 34.9443ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.b__31_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.0605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.5328ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 77.0954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 80.6194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 217.9881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 222.5315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.8632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.8411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 228.6819ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 234.6062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.8245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.1155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.9762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.0064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 196.5253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 199.4766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.6959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.2774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 172.1624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 175.0699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.0383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.2007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.0517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 205.2537ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 208.4195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.8622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.5844ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 150.8487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 154.2837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.4837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.4067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.9901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.8762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 201.9706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 205.2828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.5417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.3073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 165.6961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 168.9177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.2789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.8176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.3557ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.1705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.4261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 201.6925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.1573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 44.9285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 142.8491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 147.708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.7942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.3139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.9111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.6234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 148.1172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 151.2572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 114.3093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 117.8899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 198.4572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 202.6267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.9357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.5942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.3812ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.1777ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 195.2459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 198.1769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.8339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.0551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 158.6721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 162.9862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.0103ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.8124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.7139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.2274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 192.8146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.8621ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.9701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 138.9546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 142.1688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.1705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.5038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.4161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.3638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.3964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 177.6574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.1723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.4122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 114.1257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 117.7465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.4304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.2713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.1477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 13.9608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 126.3699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 129.9832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.1568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.6191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.2964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 125.1589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 128.0327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.0168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.7731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.8217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.9875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 124.1036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 127.5376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.8185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.5331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.1085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.3938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 113.9572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 117.2763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.8098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.7666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 442.5202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 448.5591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.0739ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.5772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.5993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 216.0391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 218.8646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.2696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.4442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 154.6017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 158.5788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.5121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.0961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.4291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.1594ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 182.2953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 185.6868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.7649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 73.8979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 146.3838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 150.3695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.1933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.6232ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 10.4797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 13.3141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 167.8805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 170.8792ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 71.236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 75.4024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 166.35ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 169.4125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.4882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.3986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.5342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.2779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 191.1315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 194.6047ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.7815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.7318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.4894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.0959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 195.506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 198.9726ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.2111ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.5543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 157.2976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 161.3248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.9642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.5781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.208ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.2878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.5725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 183.9244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 89.7971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 92.9128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 148.363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 151.8007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.9937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.4898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.8932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.5561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 158.6869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 161.4717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.6398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.1174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 126.6501ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 129.7429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 119.0183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 123.0945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231114031439_14888.log b/AMESCoreStudio.Web/logs/stdout_20231114031439_14888.log deleted file mode 100644 index 958bdc6a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231114031439_14888.log +++ /dev/null @@ -1,339 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3677.9192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3687.3346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 79.7723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 83.691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 54.6149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 59.4518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 82.4939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 86.1099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 75.886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 79.8081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 71.5192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 74.133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 50.1353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 53.4995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitVarityInfoes/Query/-99/-99/A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitVarityInfoes/Query/-99/-99/A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 135.0284ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 140.2745ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.8438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.0996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.0977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.8872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 289.5303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 292.5619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.0403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 266.935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 270.5428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 148.2803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 151.2841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 155.3818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 158.8789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 139.4512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 142.5724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 130.0488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 133.1689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.3518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.7433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.7032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.4946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 227.3872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 230.411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.6037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 132.748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 135.8256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 122.3687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 125.0464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 141.8985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 144.9063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 133.323ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 136.3785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 144.4979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 148.8676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 127.668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 130.817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 158.4447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 161.1286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 132.9251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 135.6153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.5189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.6298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.8805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 180.769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 183.8342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.5661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.5288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 129.2314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 132.1947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.3995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 74.4401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 139.2102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 142.558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.7546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.3327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 140.7028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 143.4689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 63.3089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 67.3381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.2408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.9586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.7926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.2381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231114032032_34876.log b/AMESCoreStudio.Web/logs/stdout_20231114032032_34876.log deleted file mode 100644 index ebceac7d..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231114032032_34876.log +++ /dev/null @@ -1,410 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2876.8158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2886.6881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 71.4364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 74.8994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 54.0477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 58.2588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 120.0033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 123.9672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 103.4211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 108.1683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 128.182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 131.1738ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=B&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=B&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 84.3784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 87.2709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/BFC-1232-610A1-01R%2C1200 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 49.7261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 52.3715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/30040?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 395.3106ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 397.7874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 76.5758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 80.157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 43.2618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 45.6911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 37.0309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 39.5574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 38.6285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.7061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 43.1886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 45.9698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 45.9224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 48.4123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 44.6109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 47.0307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 37.1564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 39.8226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 39.2576ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.9031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 54.3897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 57.2256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=32337&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 49.1279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 52.1153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1091&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 75.2043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 78.1367ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1092&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 43.5509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 47.5456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1096&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 50.2184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 53.778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1104&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 49.6465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 53.149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1102&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 67.0465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 71.2139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1105&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.1617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 81.0209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1106&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 66.7109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 70.6261ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1098&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 46.1112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 49.0243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1097&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 40.1151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 42.4795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1101&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 39.0469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 41.8926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=32337&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 41.9059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 45.4209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.7689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.3369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.7827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.6684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 437.0829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 440.473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.3765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.2311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.3295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.4255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.6291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.6724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.6832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.5577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.9637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.9538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 132.9156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 136.0519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 185.7999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 188.5306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.8865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 175.3454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 178.4238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/O -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/O -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.5511ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.5505ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 172.9413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 175.7467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 60.2603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 64.4305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.6112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.9779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.1965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 30.0939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 32.6883ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '==' cannot be applied to operands of type 'string' and 'int' - at CallSite.Target(Closure , CallSite , Object , Object ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at AspNetCore.Views_WHS_WHS003.b__31_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Mi \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231114032337_3596.log b/AMESCoreStudio.Web/logs/stdout_20231114032337_3596.log deleted file mode 100644 index 06feefc2..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231114032337_3596.log +++ /dev/null @@ -1,1092 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3620.8762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3630.1223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 50.4159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 54.3545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 56.5432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 61.2385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 100.6759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 104.4612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 80.6809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 84.51ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 78.9783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 83.7526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/QcGroup/QcGroupQuery?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/QcGroup/QcGroupQuery?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 67.2977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 71.3468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.9657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.4737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 113.3948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 116.2741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.6027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.8869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.1337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.4946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 180.6189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 184.1282ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '==' cannot be applied to operands of type 'string' and 'int' - at CallSite.Target(Closure , CallSite , Object , Object ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at AspNetCore.Views_WHS_WHS003.b__31_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.1472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.8949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.4581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.5169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 148.535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 151.6868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.0593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.1334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/O -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/O -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.3979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.0086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 212.5063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 215.7613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.7994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.3938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 141.7326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 144.918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 81.8147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 85.0085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.8885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.3747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.7983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 26.5541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 29.0162ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '==' cannot be applied to operands of type 'string' and 'int' - at CallSite.Target(Closure , CallSite , Object , Object ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at AspNetCore.Views_WHS_WHS003.b__31_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.5312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.0275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.9246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.1967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 204.0942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.1287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.4605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.0144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 132.7337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 135.5163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.7632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.0405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 127.9459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 130.9184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.2889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 45.9089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.3263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.7955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.1912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.2394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 25.0185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 27.6647ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '==' cannot be applied to operands of type 'string' and 'int' - at CallSite.Target(Closure , CallSite , Object , Object ) - at AspNetCore.Views_WHS_WHS003.b__31_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.5477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.1754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.4581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.4101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 215.8584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 218.7722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 82.6952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 86.4601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 472.2591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 475.5373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.4285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.5958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 157.532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 160.7049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.3924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.9764ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 164.159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 167.2243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 24.291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 27.5168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.7505ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.5027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.9536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.4986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 31.9468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 34.9768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.2225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.8061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.1158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.4708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.809ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.9343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 31.1187ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 33.707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.7168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.1331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.3599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.8695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 23.0272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 25.3392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.3853ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.0011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.9184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 30.0411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 33.0077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.8048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.6105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.6433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.5668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.7268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.0662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.9089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.1771ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.7256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.9928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 34.0461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 36.5189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.6241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.5483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.2342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.6488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.5439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.2624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.6297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.7199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.1196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 178.5842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 181.9677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.3936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.1422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 202.1339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 205.1903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.5397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.1467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.6444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.2234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.8759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.4664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 179.6678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 183.0376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.0882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.6012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 156.4462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 159.3488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.0621ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 44.8392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.3552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.8048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.6079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.0925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 24.1645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 26.2738ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.8347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.0289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.5954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 35.1196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.3069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.6533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.2368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.4417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 34.1119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 37.2849ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.6955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.3375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.4476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Appl%3Be -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Appl%3Be -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 31.7227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 34.8368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.7695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.2115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/indexFactoryUnit.Value -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.0271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.3455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/indexFactoryUnit.Value/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.4285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 34.9667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.6259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.2065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 11.8639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 14.8288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 200.3377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 203.3625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.7597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.6492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.9076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.0014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 211.8396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 215.0167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 62.2278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.9459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.2845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.9165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.6794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.5151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.5946ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.6659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.5058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 107.6896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 110.0201ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '==' cannot be applied to operands of type 'string' and 'int' - at CallSite.Target(Closure , CallSite , Object , Object ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at AspNetCore.Views_WHS_WHS003.b__30_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.1384ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.7194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.4355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 300.4897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 303.379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.4026ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.9952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.4721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.4444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.6211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 108.9841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 112.112ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '!=' cannot be applied to operands of type 'int' and 'string' - at CallSite.Target(Closure , CallSite , Object , String ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at AspNetCore.Views_WHS_WHS003.b__30_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 44 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231114033402_36704.log b/AMESCoreStudio.Web/logs/stdout_20231114033402_36704.log deleted file mode 100644 index 1b793567..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231114033402_36704.log +++ /dev/null @@ -1,330 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3273.441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3282.1895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 45.0053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 47.7661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 50.2396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 54.0775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 84.8715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 87.4167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.1196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 76.8311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 78.2566ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 81.0412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 37.2898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 41.5544ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.8184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.9327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 128.995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 132.1059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.6957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.6429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.6527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 184.4235ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 188.0332ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '==' cannot be applied to operands of type 'string' and 'int' - at CallSite.Target(Closure , CallSite , Object , Object ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at AspNetCore.Views_WHS_WHS003.b__30_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.8158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.6078ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.2824ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.824ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 149.6914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 153.1118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.6774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.3665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.0118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.4356ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.5929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.1169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 44.082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 78.0757ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 80.8932ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '==' cannot be applied to operands of type 'string' and 'int' - at CallSite.Target(Closure , CallSite , Object , Object ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at AspNetCore.Views_WHS_WHS003.b__30_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.9724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.5314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.1931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.2344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 137.0508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 140.0318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.3057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.7407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 128.0177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.1003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.2013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.1944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.7002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.0068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.4409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 75.3099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 78.4573ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '==' cannot be applied to operands of type 'string' and 'int' - at CallSite.Target(Closure , CallSite , Object , Object ) - at AspNetCore.Views_WHS_WHS003.b__30_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 49 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231114033736_15724.log b/AMESCoreStudio.Web/logs/stdout_20231114033736_15724.log deleted file mode 100644 index 5e70d691..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231114033736_15724.log +++ /dev/null @@ -1,225 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2667.3385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2677.0477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 51.135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 54.8888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 47.9345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 52.3836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.6445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.3653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.2055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 78.0487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.0774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 76.9673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 40.5661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 44.1288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.5963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.3453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.4221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 340.7707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 344.5767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.3858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.6656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.2514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.9175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.7876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.8295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 87.6466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 90.689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.4146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.1961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 195.4456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 198.336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.812ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.0839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.4483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.9269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 102.3035ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 104.9305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 194.8309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 197.5819ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.3003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.7186ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.3929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 171.712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.9867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 151.0694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 154.1164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.2749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.5254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.5747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.2167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 186.741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 190.0471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AM \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231114034651_27080.log b/AMESCoreStudio.Web/logs/stdout_20231114034651_27080.log deleted file mode 100644 index b3f03aa3..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231114034651_27080.log +++ /dev/null @@ -1,1292 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3457.4304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3466.5298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 53.0374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 55.6623ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 53.9521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 58.1091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 107.4203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 110.1491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 92.5134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.8004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 102.42ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 105.3897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.3183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.3748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 124.1408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 127.3586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.8413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.8149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 438.628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 441.5811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.7922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.8164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.4916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.8932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 270.7937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 274.0365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 94.0897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 97.5655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 319.1565ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 322.4392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.5749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.2339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 190.0112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 193.3314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.0242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 74.8093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 171.3269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 175.0395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 188.2615ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 191.6115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 247.3411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 251.0252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 84.782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.1432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 180.704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 185.2888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.5751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.1971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 179.0913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 182.4677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 84.4845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.6942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 161.2961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 164.7615ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.8281ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.6098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 155.3101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 158.6998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 62.7115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.7041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 161.1641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 163.6739ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.4452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.264ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 172.4733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 174.7915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.6068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.5504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.0608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.2942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 289.8307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 293.097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 88.6925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 92.5223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 168.3422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 173.089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.0374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.4414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 158.5121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 161.7887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.1333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 176.3463ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 179.4909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.3863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.5471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 163.7861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 166.8149ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 75.9282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 79.6116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.6686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.8395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 226.0799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 229.034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.3016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.3279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 175.7754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 178.5212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.6987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.3274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 228.9021ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 231.4671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.9253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.4055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.9536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.0761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 230.457ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 234.1431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 78.7513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 84.7055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 171.4728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 174.4771ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.4497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.1064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 227.0678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 229.8477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.9459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.2527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.0904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.2628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 257.8329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 261.0188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 84.6012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.9181ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 181.523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 184.53ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.6367ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 247.0543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 249.5969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.1204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.1125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 166.0374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 169.3346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.6065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.4551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.8297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.4502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 263.9845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 266.5639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 81.0517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 105.2955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 198.6722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 201.2605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.3399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.1044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 245.9226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 249.0698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 78.1019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 82.0731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 164.5727ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 167.3818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.2783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.2602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.9094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.1751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 244.0467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 250.5573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 147.2633ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 151.1735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 512.8963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 516.0045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.796ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.2634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 254.6551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 258.0364ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 79.8919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.7642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 170.569ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 173.3173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.3966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.3763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.1578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 23.9667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 267.0928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 273.8441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 77.9878ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.8232ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 172.7083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 175.8678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.4091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.1102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 241.0428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 243.8122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.0314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 86.7822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 177.154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 180.3935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.0755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.6679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 256.4014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 259.6787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 88.8733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 92.9889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 186.7203ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 189.7161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.0951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.5287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 263.7724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 266.05ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 79.4847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.7983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 190.8803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 193.7584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.8326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.7223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.2255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 255.0915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 258.0037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 171.4013ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 176.2766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 206.7723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 212.302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.9341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.7483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.6ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.5831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 237.3624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 240.5803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.7852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.3729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 176.3615ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 179.501ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.5837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.2031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 228.8618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 231.1923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 77.4779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.4195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 167.4464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 170.2918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.6641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.6752ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.6592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 243.8099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 248.6048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.8997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.9626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 183.0385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 185.9369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.9355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 221.6591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 223.9347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.0465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.8292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 222.7119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 225.551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 123.9239ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 126.8704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 204.2227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 207.2737ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass30_2.<b__20>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 218 ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.SetOutputContentAsync() - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 217 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.3488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.2622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 217.6476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 223.3026ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 105.655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 111.6749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 188.3454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 193.2829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19687.9233ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19690.2577ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.GetFactoryUnitsList() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 72 - at AMESCoreStudio.Web.Controllers.WHSController.WHS003(String unitNo, Int32 lineID, String modelname) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 496 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 206.0833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 208.628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.8048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.6075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 328.1539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 331.0652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 91.697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 98.8486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 269.0519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 273.5426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.8905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.8298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.9598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.1369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 227.3931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 230.0962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 73.9529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 153.0587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 155.8655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 12.7874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.05ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 227.6638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 230.3691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 115.0041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 118.4507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.7164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.1169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.9593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.4601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 172.7697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.8282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.6401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.9884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 241.4825ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 244.426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 96.7799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 99.8172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 137.4085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 140.2686ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.<>c__DisplayClass31_2.<b__20>d.MoveNext() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 218 ---- End of stack trace from previous location where exception was thrown --- diff --git a/AMESCoreStudio.Web/logs/stdout_20231114054023_13740.log b/AMESCoreStudio.Web/logs/stdout_20231114054023_13740.log deleted file mode 100644 index e8913a72..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231114054023_13740.log +++ /dev/null @@ -1,164 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3282.1057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3291.4652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 82.7284ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 86.2431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 57.435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 61.4728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 116.072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 119.5528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 95.5445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 99.2237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 135.2984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 140.0733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/QcGroup/QcGroupQuery?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/QcGroup/QcGroupQuery?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 123.4537ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 127.3966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.9639ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.8974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.4032ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 31.0724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 484.9456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 487.8536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.8057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 307.2168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 314.2947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 162.0465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 169.2208ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.3869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 316.5005ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 96.4806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 99.5779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.7039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 131.7943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 135.2357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 143.0075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 145.6978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.7538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.4028ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/ \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231114054453_32096.log b/AMESCoreStudio.Web/logs/stdout_20231114054453_32096.log deleted file mode 100644 index 16a85df2..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231114054453_32096.log +++ /dev/null @@ -1,684 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3529.4948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3538.7351ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 52.4341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 55.9373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 60.7607ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 64.7645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 118.7397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 97.0215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 101.1731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 133.4611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 136.1141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/NgInfo/GetNgInfoByStatus4REP001?status=0&factoryNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/NgInfo/GetNgInfoByStatus4REP001?status=0&factoryNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 124.1783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 128.925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.6647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.9923ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.2893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.5064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 531.9242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 535.8641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.9113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.8531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 125.6768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 129.9286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 221.9823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 225.2757ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 101.4423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 104.7545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.3006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 213.1291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 115.5376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 118.734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 200.4585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 204.2756ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 240.6043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 244.2671ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.8785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.0202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 185.6707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 189.6098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 77.6114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 82.2526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 162.644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 166.1337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.6163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.3665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 234.5996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 237.9434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 28.0859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 216.3397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 219.4375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 147.1065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 150.412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 239.6549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 242.915ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.2024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.6067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.4547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.5667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 257.3837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 260.5119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.4001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 211.7533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 214.8793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 151.6499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 154.5068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 252.2833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 255.512ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.7803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.2404ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 163.8669ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 167.5573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 67.1567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.6137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 217.5598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 220.4552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 3243.644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 3246.9294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.7165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.9561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 290.9373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 293.5916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.1553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.9747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 189.1808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 221.6998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 87.046ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 467.8725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 470.4693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17083 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17083 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 81.5353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 84.6653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.6359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 312.9123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 317.1358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 105.2837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 108.5613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 196.972ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 199.856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.1622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.8398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 327.8944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 330.8291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17083 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17083 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 62.3555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 66.5491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.5981ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.0628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 458.4816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 461.2267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.1214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 38.2381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 46.9214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 53.1717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.0025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.6598ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 55.8516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 58.9967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 144.3992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 147.5781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.1098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 35.0238ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/O -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/O -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.0109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.1853ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 132.9626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 135.7814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 179.0349ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 182.6986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 244.8691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 248.0684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.6967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.7459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 122.1908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 125.3651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 304.4543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 307.5298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.1312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.7609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 214.1549ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.2684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.8624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 256.8683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 260.353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.7977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.2101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.8145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 216.5345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 219.0969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.4473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.1187ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.7602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 255.0133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 257.8759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.8637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.5152ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.CompilationFailedException: One or more compilation failures occurred: -D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml(299,50): Error RZ1005: ":" is not valid at the start of a code block. Only identifiers, keywords, comments, "(" and "{" are valid. -D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml(299,58): Error RZ1005: ":" is not valid at the start of a code block. Only identifiers, keywords, comments, "(" and "{" are valid. - at Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.RuntimeViewCompiler.CompileAndEmit(String relativePath) - at Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.RuntimeViewCompiler.OnCacheMiss(String normalizedPath) ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Razor.Compilation.DefaultRazorPageFactoryProvider.CreateFactory(String relativePath) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.CreateCacheResult(HashSet`1 expirationTokens, String relativePath, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.OnCacheMiss(ViewLocationExpanderContext expanderContext, ViewLocationCacheKey cacheKey) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.LocatePageFromViewLocations(ActionContext actionContext, String pageName, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.FindView(ActionContext context, String viewName, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine.FindView(ActionContext context, String viewName, Boolean isMainPage) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.FindView(ActionContext actionContext, ViewResult viewResult) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.End \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231114055534_35828.log b/AMESCoreStudio.Web/logs/stdout_20231114055534_35828.log deleted file mode 100644 index 588b8ef8..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231114055534_35828.log +++ /dev/null @@ -1,328 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3899.5732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3910.5872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 55.3135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 58.8157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 59.7558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 63.5107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 116.1317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 119.8252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 104.482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 108.5737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 113.1409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 116.9336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes/Query/-99/A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/OutfitCommodityInfoes/Query/-99/A -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.ClientHandler[101] - Received HTTP response after 57.1358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IJIG.LogicalHandler[101] - End processing HTTP request after 62.2831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.5499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.9751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.1061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.771ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 467.0975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 470.4041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.1363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.3156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 47.2359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 50.1473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.0443ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.0357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 69.7269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 72.4685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 313.0486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 316.1451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 53.9609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 59.3884ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 451.7962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 455.6942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.3894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.7259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 250.9375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 254.3543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17088 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17088 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 77.8951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 81.4651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.6042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.8559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 225.1603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 227.7711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 217.8484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 221.4818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 237.4704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 241.416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.5778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 237.8096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 241.1848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.9869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 74.472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 178.7385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 181.3704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17089 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17089 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 29.1168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 31.6675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 76.937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 80.5124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 395.9005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 398.585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.1468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 73.8731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.2943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.2776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 79.3838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 82.0816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/D/1010/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/D/1010/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 150.464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 153.8582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.0378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 242.3635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 244.9619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 147.9541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 151.1363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/D/1010/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/D/1010/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 120.8605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.5484ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response a \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231114064915_35768.log b/AMESCoreStudio.Web/logs/stdout_20231114064915_35768.log deleted file mode 100644 index d521305d..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231114064915_35768.log +++ /dev/null @@ -1,469 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 19813.0748ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 19821.2856ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.LoginController.Index(LoginViewModel vModel) in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Controllers\LoginController.cs:line 66 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 248.7052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 253.2906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 24.4485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 27.2586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 30.4998ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 33.7346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 79.205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 82.4828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 72.588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 75.897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.4168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.1219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.8717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.4831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 105.0805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 108.4785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.8848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.5607ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 190.0451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 193.2834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17084 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17084 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 61.597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 65.5494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.5485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.3651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 115.9207ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 119.9009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17087 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17087 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 97.9943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 101.3698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.3279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.0757ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 87.7504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 90.9371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17085 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17085 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 41.2118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 44.5278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.0774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 85.8512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 88.7459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17086 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17086 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 33.3849ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 36.4324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.5531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.1461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 33.5194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 36.9941ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.9538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.6536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.8415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.6119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.8201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.9016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 34.842ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 38.2043ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.b__31_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 51 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.5736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.6411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 34.245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 37.585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 154.0947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 157.7086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.1564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.6041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 33.0597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 36.5999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.0874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.5049ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.0716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.7418ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.7293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.2471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 34.708ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.b__31_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 51 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.8141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.6798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.2815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.8491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.3294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 15.6895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.4415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.7061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 30.8817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 33.3658ms - OK -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -System.NullReferenceException: Object reference not set to an instance of an object. - at AspNetCore.Views_WHS_WHS003.b__31_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 51 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.8493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115074431_34440.log b/AMESCoreStudio.Web/logs/stdout_20231115074431_34440.log deleted file mode 100644 index df866aa1..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115074431_34440.log +++ /dev/null @@ -1,649 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4541.8376ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4550.6563ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 84.5532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 87.4509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.8787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.5995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 165.8063ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.3964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 125.9823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 129.4983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 141.4455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 144.0697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 88.8076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 92.592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.9481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 699.3584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 704.5385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.4752ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.4857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 451.212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 457.3719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.5642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.6529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 534.7993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 542.1255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 232.6937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 244.6832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 459.2318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 464.8555ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 444.9506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 469.9562ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 555.0358ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 561.4229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.9554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 367.5967ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 375.1414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 177.8744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 184.621ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 379.6225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 385.1621ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 149.6671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 156.5436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 373.9986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 379.0637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.3625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.8371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 540.9797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 548.0116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17089 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17089 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 149.5217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 160.895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.5702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.8299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 366.6815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 374.5073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17090 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17090 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 115.5407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.6971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.6854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 265.4061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 271.7756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17091 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 120.1378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.5346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.7718ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.4808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 319.1976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 325.7435ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17092 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 116.0331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 132.9395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.5015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.8856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 62.4428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 68.7572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.6613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.7319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 65.8751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 77.713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 455.9782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 467.3679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 60.516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 74.8799ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 764.728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 772.7006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.8429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.0664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 404.0557ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 416.058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.3619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.8802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 403.5273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 407.228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.6762ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 216.8871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 361.7164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 364.9244ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.5951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.1326ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 352.9409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 360.6187ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 378.3882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 387.827ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 523.7795ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 534.0081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.8513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.8151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 404.5054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 409.4861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17093 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17093 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 123.8789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.2336ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.7346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.2826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 344.9543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 349.5163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17096 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 112.3969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 119.6625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.1709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.9774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 240.901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 244.696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 108.8862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 120.0463ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 306.7532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 312.7427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17095 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17095 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 107.4728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 117.9431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.5871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 44.0182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 245.8539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 252.2541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17094 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17094 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 111.4896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 63.9951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 71.117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.1379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 58.7673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 72.9137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 1/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 557.1742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 565.4157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 51.8986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 66.6631ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1300.3428ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1310.7048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.5023ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.9775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 542.2734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 561.2488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.2677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.2426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 542.693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 548.5643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 218.996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 517.369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 527.4436ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCore \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115082034_27436.log b/AMESCoreStudio.Web/logs/stdout_20231115082034_27436.log deleted file mode 100644 index 408ad1cf..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115082034_27436.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4551.1873ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4563.4243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 80.1159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 86.521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 68.1166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 73.629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 172.9665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 181.7288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 121.3315ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.5268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.4156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 165.738ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryU \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115083137_2580.log b/AMESCoreStudio.Web/logs/stdout_20231115083137_2580.log deleted file mode 100644 index 09597b8b..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115083137_2580.log +++ /dev/null @@ -1,222 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4744.3599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4753.8528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 67.5961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 73.4441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 63.4301ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 67.498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 153.13ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 159.53ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 123.2911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 128.0919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 145.9324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 149.9234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.8124ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.8963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.4994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.1905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 583.5466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 588.4286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 171.0395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 183.7331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 543.2115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 548.2782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 114.8682ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.8459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.6629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.8244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 486.8396ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 494.9531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 85.0244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 90.7953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 505.7098ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 513.1388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 267.2526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 274.7252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 464.065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 472.61ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 177.5474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 185.2044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 403.5503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 407.709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 126.4904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 135.1622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 378.4865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 386.3873ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 143.7158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 154.714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 401.4843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 407.9935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 223.6211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 230.2919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.8927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.8901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Rec \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115085132_28540.log b/AMESCoreStudio.Web/logs/stdout_20231115085132_28540.log deleted file mode 100644 index 41f5e3b6..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115085132_28540.log +++ /dev/null @@ -1,169 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3006.0267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3013.6256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 74.9304ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 77.9503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 67.6743ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 71.8828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 151.5296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 155.0109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 135.8541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 139.1774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.1847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.2204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.2265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 87.2828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.4354ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 744.3573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 751.0776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.2951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.4405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.7725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.1872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 574.5951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 583.3583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.566ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.6817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.73ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.463ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 588.4865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 596.8952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 79.9459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 85.4219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.3543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.9913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 564.5722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 575.0934ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.0913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.1767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.6259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: Sy \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115090113_27424.log b/AMESCoreStudio.Web/logs/stdout_20231115090113_27424.log deleted file mode 100644 index c4e89bd8..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115090113_27424.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3471.1921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3488.9723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 121.2453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 125.6079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 92.4308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 100.5926ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.5491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 174.2557ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 144.1904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 151.392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 164.7575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.3836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 88.0509ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 94.014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.4122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 759.9482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 767.0263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.7362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.3467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 547.4715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 556.8706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 149.627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 159.9262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 540.7719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 549.7725ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' hea \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115092642_13364.log b/AMESCoreStudio.Web/logs/stdout_20231115092642_13364.log deleted file mode 100644 index 454c2635..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115092642_13364.log +++ /dev/null @@ -1,485 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3609.6894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3629.7938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 90.6706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 93.7834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 71.8995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.7863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 155.1817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 159.4963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 137.9864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 143.8493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 172.2317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 176.702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 101.5951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 108.1982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.6184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.7688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 719.5136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 729.1433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.9017ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.2811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 537.7576ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 551.3431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.8698ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 169.4442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 536.4167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 546.1059ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 160.1839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 166.8965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 515.1371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 521.6675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 145.8182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 150.9282ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 365.9131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 370.1089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 297.6041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 304.4628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.6001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.5199ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 558.4525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 565.7729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17105 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 152.8007ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 159.1858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 62.5707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.3003ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 549.4033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 562.7991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.2593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.2536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 588.741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 597.7561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 140.2527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 155.3729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 558.9477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 570.4537ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 120.1147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 125.5646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 328.6535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 334.9508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 170.2821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 176.2487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 331.5219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 336.0279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 220.3122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 228.053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.0818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.4012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 555.4378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 573.9004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 64.897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 69.895ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 558.613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 564.7195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17063 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 123.146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 130.2868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.9019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 457.1173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 463.484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17077 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17077 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 104.1867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 109.3236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.2291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.3808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 386.1617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 392.8002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.5667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.7652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 380.6393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 385.1262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 190.3543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 196.0112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 382.9736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 391.6437ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 157.0002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 164.4316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 336.6728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 341.2293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 191.4855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 199.6668ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.8953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.9262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 490.1412ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 500.1225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17108 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17108 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 132.3602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 137.9247ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.5277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 65.6005ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 384.427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 393.8108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.1462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.2268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 431.7018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 439.5666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 168.1628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 179.8012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 367.47ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 378.8743ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudi \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115093557_25004.log b/AMESCoreStudio.Web/logs/stdout_20231115093557_25004.log deleted file mode 100644 index 1a4a9a25..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115093557_25004.log +++ /dev/null @@ -1,325 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3509.9386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3525.7208ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 99.535ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 108.0105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 71.1251ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 78.0225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 190.6516ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 197.5826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 168.9097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 178.2536ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 178.7574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 185.4912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 103.5836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 112.6107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.2789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.8277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 609.7061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 619.378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.5903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.4732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 385.0656ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 394.0834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 210.0106ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 222.1587ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 388.0152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 397.8219ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 354.0089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 360.6157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 360.2938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 369.5093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 252.7054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 261.7188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.2465ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.7961ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 498.3285ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 505.7555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.6353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.5734ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 512.4833ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 517.0182ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 198.5248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 205.5329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 473.0676ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 478.4384ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 160.7953ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 165.6837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 341.3377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 350.8634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 50756.2742ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 50761.7914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1324.9916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1328.8405ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.5471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.4139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 496.225ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 501.9909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.7663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.3712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 498.1977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 504.8154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 174.0756ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 182.0949ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 467.2107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 481.8087ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 168.5463ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 174.66ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 319.0528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 324.1755ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1382.1173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1390.6332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.8523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.3658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.4899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.9994ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 518.942ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 525.378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.0487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.3956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.Logic \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115094555_26676.log b/AMESCoreStudio.Web/logs/stdout_20231115094555_26676.log deleted file mode 100644 index 6729b4fe..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115094555_26676.log +++ /dev/null @@ -1,113 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5870.0894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5879.8381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 63.1862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 67.0378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 65.04ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 69.3588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 139.6919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 143.5276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 115.0295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 118.7868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 136.7143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 140.0041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 65.117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.8157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.9426ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.1209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 632.9746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 638.8293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17109 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17109 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 129.6497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 134.3654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.667ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 37.6771ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 372.2511ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 379.673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.2831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.3438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.Htt \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115094706_35224.log b/AMESCoreStudio.Web/logs/stdout_20231115094706_35224.log deleted file mode 100644 index 88d804f5..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115094706_35224.log +++ /dev/null @@ -1,166 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2979.5532ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2986.7472ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 69.9761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 72.7427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 70.4624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 73.7061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 159.6101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 162.9337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 125.4365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.9931ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 145.5901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.9918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 80.7283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 84.0869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.0151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.8332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 565.3802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 571.7002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.8715ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.6736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 409.3043ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 419.1224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 264.2693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 272.9893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 395.2395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 403.4684ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 408.9747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 416.991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 420.3275ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 430.2136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1032.2514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1037.8924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.5804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.9436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 527.0637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 532.3886ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 204.1898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 207.0273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115095157_31040.log b/AMESCoreStudio.Web/logs/stdout_20231115095157_31040.log deleted file mode 100644 index 928e89b4..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115095157_31040.log +++ /dev/null @@ -1,222 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3143.2169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3151.3045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 76.7301ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 81.3228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 66.1722ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 70.2265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 164.4411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 167.8852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 142.3246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 147.7714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 155.8695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 161.1579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 76.5559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 80.1172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.7773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.9417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 706.2399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 713.5565ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 373.0705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 381.2442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 442.4061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 450.6347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17106 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1130.8127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1137.5053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.2915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.0228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 662.9909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 668.9613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.3894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.2355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 676.9413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 684.6226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 170.5807ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 176.0577ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.2578ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.5234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 653.1204ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 660.8748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 237.6567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 245.9733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1002/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1002/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 230.0964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 241.4915ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/F -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.4294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.4594ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 393.4307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 401.1133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 67.9374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.5806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 382.0257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 392.1805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 143.7393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 153.1719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - R \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115095648_22572.log b/AMESCoreStudio.Web/logs/stdout_20231115095648_22572.log deleted file mode 100644 index 2f6938a1..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115095648_22572.log +++ /dev/null @@ -1,166 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3058.1246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3066.1768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 65.4703ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 68.0169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.3014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 150.7449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 153.5178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 126.2068ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 129.5432ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 151.2419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 154.7986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 71.803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 75.1417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.3786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.8429ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 711.9929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 718.9354ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.5008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.8697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 554.4546ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 560.2216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 189.4139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 196.8776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 533.1575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 540.1985ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 350.4196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 356.3409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 351.1814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 356.3801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 176.1386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 182.4643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 341.5314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 347.2118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 4697.8992ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 4703.2236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.9922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.2319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - R \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115103733_17356.log b/AMESCoreStudio.Web/logs/stdout_20231115103733_17356.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231115131827_23948.log b/AMESCoreStudio.Web/logs/stdout_20231115131827_23948.log deleted file mode 100644 index f148fd44..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115131827_23948.log +++ /dev/null @@ -1,263 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4571.2052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4582.3572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 69.6635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 72.7899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 64.7165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 68.8279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 181.134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 183.7808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 140.0096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 143.2133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 171.9286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 176.4411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 78.1091ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.3152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.9279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.1751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 817.6134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 823.9086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 153.0867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 157.1997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 544.929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 549.236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 7761.2088ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 7763.9797ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 583 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 268.0672ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 272.8826ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 583 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.6174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.7924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 675.5089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 682.3342ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 198.7928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 208.0885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 399.0266ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 405.3945ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 267.4221ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 273.13ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 583 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 35436.2576ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 35444.0343ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 583 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoke \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115132020_14900.log b/AMESCoreStudio.Web/logs/stdout_20231115132020_14900.log deleted file mode 100644 index fe32adc6..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115132020_14900.log +++ /dev/null @@ -1,221 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3447.2387ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3455.4663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 72.0883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 75.823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 60.0831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 63.6476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 155.3316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 159.3849ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 125.8198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 128.8778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 142.3991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 145.3375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.9012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.5ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.8494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.6889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 860.2955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 865.7683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 169.3959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 175.8627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 564.0079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 572.8377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2540.8818ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2544.0721ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 583 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 19345.5729ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 19355.7856ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 583 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1822.511ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1825.5526ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 583 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 38195.7654ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 38201.3534ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 583 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IAct \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115132500_11600.log b/AMESCoreStudio.Web/logs/stdout_20231115132500_11600.log deleted file mode 100644 index 5181087c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115132500_11600.log +++ /dev/null @@ -1,151 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3722.4416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3741.8892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 95.8451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 104.5495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 92.0419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 99.0869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 173.4592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 179.0359ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 164.5582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.8766ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 152.5849ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 157.6826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 118.6156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 126.9102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.4283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.5139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 856.355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 864.8802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 367.1386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 380.6884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 391.9685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 402.1015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 177.0473ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 184.218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 367.3383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 372.2708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 8567.5686ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 8572.4526ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 583 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.Htt \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115132708_13436.log b/AMESCoreStudio.Web/logs/stdout_20231115132708_13436.log deleted file mode 100644 index 1ec4d92a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115132708_13436.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3892.0025ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3915.9652ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 71.4899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 77.2161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 90.8292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 98.3196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 163.3064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 168.7663ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 121.2831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 127.2469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 159.0189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 165.1226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 94.6924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 100.4398ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.7665ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.5462ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 839.5799ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 849.5146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 181.0037ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 188.5392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 571.0317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 580.5052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 7600.8837ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 7606.8869ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSContro \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115133042_26284.log b/AMESCoreStudio.Web/logs/stdout_20231115133042_26284.log deleted file mode 100644 index de08be2d..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115133042_26284.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4047.3436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4069.2474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 76.6979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 84.527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 97.0852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 106.7708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 177.5943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 184.4197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 127.5892ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 138.3464ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 159.5616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 252.3077ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.0029ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 94.1283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.0193ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.4283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 811.1691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 822.7997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 427.184ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 445.394ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 458.7959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 469.8501ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 5282.5938ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5287.0264ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSControlle \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115133221_34932.log b/AMESCoreStudio.Web/logs/stdout_20231115133221_34932.log deleted file mode 100644 index 52ab2068..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115133221_34932.log +++ /dev/null @@ -1,114 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 6027.9528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 6048.1918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 78.5057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 84.918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 83.9989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 89.6621ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 158.9349ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 167.2062ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 145.7039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 150.7055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 155.237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 160.0974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 100.3515ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 109.2965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.1148ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 62.4303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 845.1995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 859.6693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 380.7798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 395.5177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 399.6975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 416.3919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 9440.5031ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 9450.1611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.6862ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.2726ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP re \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115135930_6664.log b/AMESCoreStudio.Web/logs/stdout_20231115135930_6664.log deleted file mode 100644 index 52eec705..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115135930_6664.log +++ /dev/null @@ -1,112 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3851.2445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3870.5843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 109.6933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 115.5019ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 105.1853ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 120.8133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 234.2672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 244.9268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.0749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 176.2231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 249.0594ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 258.5344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 84.1847ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 92.448ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.3662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.3363ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 857.453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 869.5209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 184.3884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 194.6819ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 570.8105ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 575.6852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo//0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo//0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 15.8893ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 27.9781ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controller \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115140047_17016.log b/AMESCoreStudio.Web/logs/stdout_20231115140047_17016.log deleted file mode 100644 index 37fda749..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115140047_17016.log +++ /dev/null @@ -1,149 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3474.8112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3493.4189ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 75.8381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 82.9104ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 80.5814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 87.4792ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 162.6869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 174.9395ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 131.1087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 139.0034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 172.9741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 181.4374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 94.2433ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 101.7579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.1529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.9557ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 852.5397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 864.041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 142.0273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 150.5986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 529.2089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 534.0885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo//0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo//0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 13.4082ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 24.8313ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 583 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo//0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo//0/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2.4578ms - NotFound -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 5.0369ms - NotFound -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:404 Not Found - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 583 - at \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115140336_27756.log b/AMESCoreStudio.Web/logs/stdout_20231115140336_27756.log deleted file mode 100644 index b1a40052..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115140336_27756.log +++ /dev/null @@ -1,275 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3551.1837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3570.7576ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 88.6933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 93.7482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 76.1369ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 80.6476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 189.9925ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 195.4196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 161.4943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.3156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 184.4362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 193.6968ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 86.7959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 94.3767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.5707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.5239ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Aplle -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Aplle -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 85.3921ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 90.9168ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.4034ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.3166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 858.6693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 866.5673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 356.0498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 367.5307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 397.651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 404.1816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 741.5823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 749.2437ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2205.2832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2212.0712ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.3377ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 704.1591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 710.7559ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 181.3446ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 184.2422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 386.3912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 388.817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 687.3161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 693.6055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1425.4688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1431.3919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 61.2191ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 67.5666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 693.2311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 701.1271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.4259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.4837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 641.8592ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 647.2137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 221.3259ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 227.1729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 669.6004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 674.4661ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 140.1411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 148.8297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 383.6422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 388.7927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 158.9407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 166.8458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 332.096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 336.6475ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1537.7219ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1540.5145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.7114ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 38.6183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.Htt \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231115144053_12488.log b/AMESCoreStudio.Web/logs/stdout_20231115144053_12488.log deleted file mode 100644 index ccebb0a4..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231115144053_12488.log +++ /dev/null @@ -1,163 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3586.3ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3602.4915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 102.76ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 109.5471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 77.3935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 84.5725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 172.7216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 177.7606ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 156.4754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 162.9297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 176.3205ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 188.9026ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 162.512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 167.8608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.6094ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.6792ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 858.3748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 867.7313ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.8884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.778ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 681.4298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 690.6324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 223.5312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 229.5959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 692.1538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 700.1422ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 274.8015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 281.8333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.6382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.1747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 702.8541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 710.7884ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.3093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.8626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 825.513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 832.4026ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 162.6952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 170.0902ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHand \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231120063358_24600.log b/AMESCoreStudio.Web/logs/stdout_20231120063358_24600.log deleted file mode 100644 index 7df74f8d..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231120063358_24600.log +++ /dev/null @@ -1,422 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3569.7697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3578.6004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 61.0513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 64.0776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 68.7498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 72.6131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 122.7404ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 126.178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 92.1278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 98.9256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 101.4269ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.9955ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 87.7876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.9221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.4527ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.9374ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.6829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 34.5657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.0488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.1147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 778.8882ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 782.5407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 110.9113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 116.3481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 448.1935ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 451.4313ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.2457ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 455.5188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 457.9958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.4869ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 445.1662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 448.28ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 73.5837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 76.9814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 446.2753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 449.4241ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.0227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.5999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 423.2471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 425.9772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.8131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.3143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 442.5645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 445.823ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 69.591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 73.1348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 451.1461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 454.537ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.8774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.9437ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.4055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.6948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 441.5488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 445.2944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.8568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.8908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 430.4711ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 433.8474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 61.8845ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 65.2082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 413.7685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 417.7397ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.7154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.4694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.2485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 429.0774ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 432.6ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.0927ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.8144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 480.7055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 483.9631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 74.6218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 77.872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 463.5496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 468.1613ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.8876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 429.4306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 432.0636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.764ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.1948ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 433.1499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 436.6444ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 104761.0579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 104763.5641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 579.7537ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 582.3182ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.9044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.5539ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 453.9115ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 456.638ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.8339ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.0896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 433.9087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 436.9839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1: \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231120065216_38452.log b/AMESCoreStudio.Web/logs/stdout_20231120065216_38452.log deleted file mode 100644 index 030fded8..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231120065216_38452.log +++ /dev/null @@ -1,323 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3473.3723ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3482.1314ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 44.8719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 47.9912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 46.5721ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 50.9223ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 87.423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 90.7691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 73.7041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 76.7675ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.5608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 77.1651ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 150.8863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 154.7674ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 20.0101ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 23.2682ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.3608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 50.4218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.3993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.8808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 425.064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 427.6637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.9986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.2779ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 227.717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 231.0135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 4702.9408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 4706.4355ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 225.0702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 228.6369ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 258.0212ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 261.4417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.5681ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.4439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 302.3979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 304.8695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 148.4525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 152.0488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 218.4061ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 222.2677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 82.4044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 86.551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 700.896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 703.7903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 415.5944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 418.7195ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17119 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17119 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 60.4495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 63.6521ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.9221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.0417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 336.5836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 339.1954ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17117 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17117 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 70.4332ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 74.8618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.3969ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.8696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 319.479ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 322.1929ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.2169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.9113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 338.5135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 342.4904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 46.297ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 49.2896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 331.3194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 334.2708ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.0479ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.2728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 255.7619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 258.3134ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.4054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.0763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 38.4848ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 41.416ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 13.9512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.9876ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 31.9661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 34.637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123072925_24312.log b/AMESCoreStudio.Web/logs/stdout_20231123072925_24312.log deleted file mode 100644 index 6e27f97c..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123072925_24312.log +++ /dev/null @@ -1,480 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 4905.5555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 4914.3242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 68.1312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 70.9611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 91.4373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 95.8197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 129.4489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 133.6178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 138.1747ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 141.979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 96.468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 99.7427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/NgInfo/Barcode/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/NgInfo/Barcode/ -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.ClientHandler[101] - Received HTTP response after 153.9127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IREP.LogicalHandler[101] - End processing HTTP request after 157.3804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.8602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 57.8353ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 163.2293ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 166.3246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.0125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.2421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 29.1346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 32.5229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 605.714ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 608.5287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 102.0542ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.8024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 413.0708ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 415.5506ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 85.1844ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.7997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 346.9996ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 353.224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.2174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.2679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 379.9499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 384.2058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.1547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.4245ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 359.8201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 363.1866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.3385ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.9241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 357.4434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 359.741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 61.4868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 64.2903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 358.3831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 362.3122ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.7589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.4825ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.8486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.246ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 377.9905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 380.7027ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.5488ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.9381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 404.8341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 408.1083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 60.1719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 63.7733ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 382.2803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 385.1744ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.8888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.3797ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.7982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.4173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 374.3767ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 377.8323ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.3142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.9543ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 362.0763ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 365.6449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 53.5224ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 56.9602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 342.2786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 346.0793ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 76.2911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 79.7016ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 196.9248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 199.889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.5805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.1391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 330.6571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 333.5917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.018ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.9915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 299.2382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 301.6484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 58.7817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 61.2854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.3735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.3905ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.0607ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.5701ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 135.8373ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 139.7694ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 35.4856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.1551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 155.8099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 158.906ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.4583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.7761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.8265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.4229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 430.1817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 434.4001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.8872ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.3365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 443.0568ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 445.8338ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 80.3174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 83.6793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 433.888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 436.9737ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/ \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123075330_25548.log b/AMESCoreStudio.Web/logs/stdout_20231123075330_25548.log deleted file mode 100644 index 477d7727..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123075330_25548.log +++ /dev/null @@ -1,542 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3658.7573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3667.3341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 55.2294ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 58.6603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 60.1635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 63.9329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 154.3798ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 160.5145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 140.579ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.1122ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 101.9693ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 106.7038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/QcGroup/QcGroupQuery?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/QcGroup/QcGroupQuery?page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.ClientHandler[101] - Received HTTP response after 105.8796ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IFQC.LogicalHandler[101] - End processing HTTP request after 110.1165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.3343ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.7481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.8861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 614.1118ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 617.2166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.9851ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.0805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 419.4409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 421.8821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 80.1993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 84.0944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 409.0008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 411.7178ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/C -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 37.1502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 40.4173ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 225.3258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 228.9099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.7493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.3185ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 175.8584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 180.1705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 209.1166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 212.4899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.8966ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.1175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 377.7502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 382.2272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.4466ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.7924ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.4526ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.7107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 85.9367ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 88.6978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 177.0299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 179.8636ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 21.176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.9707ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 412.7986ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 415.9141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 64.8717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 67.2174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 129.9137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 132.8929ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.1139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.5271ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 158.8812ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 162.474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 108.8052ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 111.9179ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.7503ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 379.928ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 382.6912ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 70.4528ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 73.6399ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.9859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.5648ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.6141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.5959ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 133.769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 136.2045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.4647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.7055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 388.9065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 391.6794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 62.1725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 64.8172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 123.9647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 127.436ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 26.4772ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 30.0936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 286.2688ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 289.1554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.9064ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.0278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.9006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 45.2354ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.0441ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.9067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 43.82ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 49.0839ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 173.2867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 176.206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.4079ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 45.7053ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 334.7531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 337.0894ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.6238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.152ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 194.4775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 197.9469ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.9601ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.5649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.9602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/K -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.9785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.4423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/K/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/K/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 63.7431ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 66.1605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/O -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/O -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.2237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.0597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.1985ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.8831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/O -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/O -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.6213ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/O/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/O/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 24.3846ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 27.0497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.0176ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.4198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.0679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.5494ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.9137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/P/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/P/-99/AAA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 85.1534ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 87.852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.2627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP reques \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123080045_32264.log b/AMESCoreStudio.Web/logs/stdout_20231123080045_32264.log deleted file mode 100644 index 0d38d6cf..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123080045_32264.log +++ /dev/null @@ -1,795 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3577.6254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3587.4161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 45.8803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 49.557ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 59.8548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 63.9984ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 141.2006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 144.6406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 76.0197ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 79.2974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 71.9129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 74.7209ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=S&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=S&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 168.548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 172.4612ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVM2105%2C1003 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVM2105%2C1003 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 171.1586ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 174.2044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 210.9178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 214.6229ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 73.5415ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 78.2791ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 27.8965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 30.6622ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 27.7058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 30.4938ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.5757ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.6371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.23ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 26.7547ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 29.4383ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 49.0877ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 52.4239ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 27.5804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 30.7159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.1982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 24.8619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 29.6654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 32.1956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.7627ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.1843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 27.1253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 29.8697ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1004 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1004 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 16.9645ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 20.4417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 105.2658ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 107.9608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 27.6341ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 30.2214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 28.9956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 32.5331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 28.9157ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 32.1951ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.3702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 27.1616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 30.9422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.3045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.4291ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 50.3309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 53.6978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 36.9423ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 40.04ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 26.6834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 30.4914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.5352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.4378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 27.3626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 30.5822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 26.0937ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.8907ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.5678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.6257ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.9828ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 302.8065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 305.4691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17099 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17099 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 70.3133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 77.6939ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 20.6485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.5534ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 172.0302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 174.8226ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17102 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 37.5379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 40.6392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.3613ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 152.1977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 154.9796ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17103 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17103 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 35.8439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 39.5852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.4571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.3313ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 153.6575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 156.9637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17097 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 41.9857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 44.9824ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.1243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 119.8724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 122.9683ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17100 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17100 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 36.2345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.3476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.7318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 106.7999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 109.6865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17098 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 34.0244ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 37.1238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.106ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.4362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 95.6541ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 98.0956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17104 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 35.7104ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 40.2655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.2015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.7073ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 72.9524ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 75.7155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17101 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 77.4069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 80.4159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.9406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.2995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.4917ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 35.233ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.3868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 31.6602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 34.0632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.6637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.6725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.9483ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 36.8729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/ 0/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 122.6889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 126.0107ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 32.889ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 35.4254ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 226.6678ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 229.8014ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.5556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.2991ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 126.8831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 131.4071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.738ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.0393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.4781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.2153ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.2548ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/P/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/P/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 62.4728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 65.5632ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.2146ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.6553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.5196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.2402ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.1125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.4143ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 38.2214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 41.5671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 204.7305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 207.8319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.7417ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 22.0623ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 120.642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 31.6744ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.6329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.3794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.3687ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.5702ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.1254ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 84.4725ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 87.6362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/S -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/S -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 33.2391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 36.7066ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 32.4048ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 35.7691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/Q -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/Q -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.2737ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.1518ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 113.7716ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 116.8758ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 19.0664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.8218ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 108.1318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 111.3782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.6901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.2826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 100.2299ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 103.9679ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.1097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.7455ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.0132ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.2691ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/P -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.3065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.4067ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/P/1009/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/P/1009/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 50.1686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 52.7422ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: S \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123080416_38264.log b/AMESCoreStudio.Web/logs/stdout_20231123080416_38264.log deleted file mode 100644 index 9b525f3a..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123080416_38264.log +++ /dev/null @@ -1,220 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2715.3647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2724.1936ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 57.7158ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 61.5214ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 68.4759ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 72.2672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 112.5519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 115.908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 88.9162ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 92.4736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 100.167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 103.5413ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.3403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 55.5002ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkClasses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 212.3502ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 215.6846ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.3806ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.1965ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 681.8957ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 684.7372ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 83.0172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 86.338ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.6582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 28.0313ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.5273ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.5286ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 159.2141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 163.8915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.0489ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.7136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 466.9097ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 470.0477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 80.0659ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 83.5958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 137.8918ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 141.0414ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.0033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 24.8728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 72.5531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 75.8776ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 311.3753ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 314.5585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 78.2102ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 81.337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.6589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.6318ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.0589ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.5381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 158.2789ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 161.0962ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.2357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 25.7039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Standard \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123080859_9908.log b/AMESCoreStudio.Web/logs/stdout_20231123080859_9908.log deleted file mode 100644 index 34224c98..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123080859_9908.log +++ /dev/null @@ -1,444 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3723.1732ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3732.258ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 46.3078ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 50.1012ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 60.65ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 63.8933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 110.2781ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 114.7407ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 81.5169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 86.2089ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.9236ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 78.8301ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=S&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=S&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 64.0887ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 67.3131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVM2105%2C1003 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVM2105%2C1003 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 27.754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 30.7499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 188.3243ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 191.7053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 54.3517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 58.4487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 32.4504ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 35.5804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.4868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.2276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 26.6741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 29.2864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.2155ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 24.9748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.1662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.1255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 55.5726ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 58.7378ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 28.2096ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 31.076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.7506ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.4081ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.3864ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.9283ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.3808ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.0497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1004 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1004 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 13.8106ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 17.2782ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 91.2903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 95.1801ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.6348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.4425ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.9689ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.8451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.0933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.7881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.9151ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.2086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.4888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.566ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 29.2045ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 33.128ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 35.8768ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 38.9137ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 31.9493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 34.9787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.6933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.2316ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.7263ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.7646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.3333ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.8819ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 29.7517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 32.666ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 25.1875ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.7252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.287ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.5553ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 246.9888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 250.5312ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.6024ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.5943ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.2264ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.1274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/I -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 30.7514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 33.574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/I/1015/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/I/1015/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 20.1388ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 22.8144ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.4202ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.5567ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.9605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.9695ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.0474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 39.2591ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/1006/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/1006/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 80.1459ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 82.958ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.6238ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.4643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 121.8896ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 125.2909ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 53.2278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 55.9829ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/1006/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/1006/AA -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 71.4817ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 74.2606ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '!=' cannot be applied to operands of type 'int' and 'string' - at CallSite.Target(Closure , CallSite , Object , String ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at AspNetCore.Views_WHS_WHS003.b__29_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 44 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.Htt \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123081015_22284.log b/AMESCoreStudio.Web/logs/stdout_20231123081015_22284.log deleted file mode 100644 index 5d1465c6..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123081015_22284.log +++ /dev/null @@ -1,168 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 2904.9268ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 2915.2786ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 48.4533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 51.4908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 47.4145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 50.6944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 96.095ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 99.2748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 74.5221ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 78.2947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 72.3551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 74.8004ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 42.8784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 46.0129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.4642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.525ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 117.5522ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 120.2317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.4599ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.4136ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.7345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.3141ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 194.414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 198.5057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17119 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17119 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 83.2724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 88.3852ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.0123ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 18.4295ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.5818ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 49.8822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 90.4582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 92.9724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.0289ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 17.0867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 258.8881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 261.8746ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 50.2139ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 53.7671ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 81.2357ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 83.8202ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123081315_22600.log b/AMESCoreStudio.Web/logs/stdout_20231123081315_22600.log deleted file mode 100644 index e3c6b40e..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123081315_22600.log +++ /dev/null @@ -1,249 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3457.8288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3466.6434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 46.1545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 49.3662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 54.6076ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 58.1572ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 94.3368ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 97.4298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 79.3989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 82.6741ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 71.8871ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 74.7446ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 178.1058ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 181.8305ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/MACInfoes/GetMACInfoes4KCS001?itemNO=&classGroupNo=&page=1&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.ClientHandler[101] - Received HTTP response after 21.531ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IKCS.LogicalHandler[101] - End processing HTTP request after 24.3194ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 53.1113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 56.2641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 125.2408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 128.5346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.2881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.5346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.1041ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.4059ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 172.3161ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 175.7147ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.0241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.3881ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 287.7647ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 291.2451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 54.278ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 57.8447ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 76.5731ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 79.4735ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 40.7619ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 43.4487ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Operator '!=' cannot be applied to operands of type 'int' and 'string' - at CallSite.Target(Closure , CallSite , Object , String ) - at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) - at AspNetCore.Views_WHS_WHS003.b__29_0() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 44 - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext.GetChildContentAsync(Boolean useCachedResult, HtmlEncoder encoder) - at Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper.ProcessAsync(TagHelperContext context, TagHelperOutput output) - at Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner.g__Awaited|0_0(Task task, TagHelperExecutionContext executionContext, Int32 i, Int32 count) - at AspNetCore.Views_WHS_WHS003.ExecuteAsync() in D:\SFIS_WEB\安勤\AMESCoreStudio.Web\Views\WHS\WHS003.cshtml:line 10 - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) - at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ActionContext actionContext, IView view, ViewDataDictionary viewData, ITempDataDictionary tempData, String contentType, Nullable`1 statusCode) - at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(ActionContext context, ViewResult result) - at Microsoft.AspNetCore.Mvc.ViewResult.ExecuteResultAsync(ActionContext context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() ---- End of stack trace from previous location where exception was thrown --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.7075ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.9989ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.3813ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.1649ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 76.7452ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 79.6053ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 17.6662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 20.5347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 257.6065ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 260.0775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 36.5739ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 39.2914ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 75.3754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 78.4317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123081454_35656.log b/AMESCoreStudio.Web/logs/stdout_20231123081454_35656.log deleted file mode 100644 index b05b5ede..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123081454_35656.log +++ /dev/null @@ -1,522 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\SFIS_WEB\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3764.2487ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3773.617ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 45.0217ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 47.9976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 50.0868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 53.3657ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 86.0044ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 89.8749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 83.8512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 86.9344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 80.8552ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 86.6944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=S&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipInfos/GetWipInfo4QRS009?unitNo=S&factoryNo= -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 66.6474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 70.1514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVM2105%2C1003 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/EVM2105%2C1003 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 23.7865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 28.5303ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 201.9477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 206.0641ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 44.2001ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 48.2008ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.8112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.5585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.5082ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.2803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.4709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.595ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.3434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 29.4934ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=31251&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.6811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 27.8389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 52.78ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 57.0846ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 27.3655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 32.0979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.8775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.9913ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 27.4307ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 32.6843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.9172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 29.3117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=31251&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.3436ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1004 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/CycleTimes/MTNO001-TEST%2C1004 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.ClientHandler[101] - Received HTTP response after 14.9471ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPPS.LogicalHandler[101] - End processing HTTP request after 18.9898ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RuleStations/Flow/1013?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 88.551ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 91.2661ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1056 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 26.5729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 29.2555ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1058 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.7838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1057 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.131ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.8331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1059 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 26.6439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 30.8262ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1000 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 22.0582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.1408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WipStation/GetWipStation4QRS009Group?wipID=1054&stationID=1054 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.4584ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 26.4133ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1056&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 35.2956ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 38.0736ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1058&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 25.9748ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 30.793ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1057&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 23.3292ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 25.9664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1059&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 24.4127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 28.1978ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1000&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 26.3484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 29.0922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/BarcodeInfoes/GetWipBarcode4QRS009?wipID=1054&stationID=1054&page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.ClientHandler[101] - Received HTTP response after 29.7083ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IPCS.LogicalHandler[101] - End processing HTTP request after 32.9743ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/WorkGroups -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 35.8234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 40.3237ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 22.7458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.664ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 18.2614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 21.3788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 354.3409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 357.9362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 54.7456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.1533ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 16.17ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.1491ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 44.9629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.7009ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 91.4276ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 94.2055ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 15.605ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 19.2451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 247.4215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 250.6637ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 55.1995ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 58.7493ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 82.3977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 85.9362ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.3813ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.4346ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.5706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 45.5856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 286.4704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 289.3979ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 128.6672ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 133.3618ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 23.9699ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 26.8908ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 67.206ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.3654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 142.2785ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 146.2211ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 236.8319ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 239.9505ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 14.0038ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 16.6513ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 416.7614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 419.1325ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.427ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 78.6971ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 24.6654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 27.5337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 74.3288ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 77.1545ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/D/1019/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/D/1019/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 80.5729ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 83.8626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 27.1859ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 29.9717ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 66.2365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 68.6172ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/D/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/D/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 144.3069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 147.3022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/ \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123122053_23280.log b/AMESCoreStudio.Web/logs/stdout_20231123122053_23280.log deleted file mode 100644 index 86b30ccc..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123122053_23280.log +++ /dev/null @@ -1,771 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 6430.3624ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 6445.0321ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 135.7583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 145.3932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 116.9575ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 125.0609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 228.4108ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 235.4456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 179.6803ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 185.9594ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 174.9858ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 179.2456ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 123.2642ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 130.893ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 324.4719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 339.7684ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 57.0086ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.4706ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 150.554ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 162.371ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 748.5838ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 765.6783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 115.9677ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 124.0072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.2561ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 118.9397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 131.5686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 223.8538ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 231.3449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 50.6802ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 61.5272ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 868.2837ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 882.0159ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AddDefault/2/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 169.3616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 181.3749ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 223.6963ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 234.1975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 116.7242ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 128.5821ms - OK -warn: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[8] - The 'Cache-Control' and 'Pragma' headers have been overridden and set to 'no-cache, no-store' and 'no-cache' respectively to prevent caching of this response. Any response that uses antiforgery should not be cached. -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/StandardWorkTimes -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 306.2769ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 314.5069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 38.5256ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 42.7325ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 106.3646ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 117.389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 211.7467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 223.9252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 463.7854ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 471.719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 42.4125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 51.7557ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1002.492ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1016.0446ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 447.5421ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 451.9915ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 533.5604ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 538.2306ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 160.3486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 166.1571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 345.2836ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 350.8485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 136.0477ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 143.4397ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 328.7883ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 334.156ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1006.3897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1013.4015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1078.6677ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1087.0916ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 592 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1035.3445ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1039.9644ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 593.1007ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 601.8558ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 592 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1009.1454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1017.127ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 34627.777ms - InternalServerError -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 34631.169ms - InternalServerError -fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] - An unhandled exception has occurred while executing the request. -WebApiClient.HttpStatusFailureException: 服?器??了??的http???:500 Internal Server Error - at WebApiClient.Attributes.ApiReturnAttribute.WebApiClient.IApiReturnAttribute.GetTaskResult(ApiActionContext context) - at WebApiClient.Contexts.ApiActionContext.ExecHttpRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecRequestAsync() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.Contexts.ApiActionContext.ExecuteActionAsync[TResult]() - at WebApiClient.ApiTask`1.InvokeAsync() - at AMESCoreStudio.Web.Controllers.WHSController.WHS003SaveAsync(List`1 model) in D:\安勤\AMESCoreStudio.Web\Controllers\WHSController.cs:line 592 - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|24_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|17_0(ResourceInvoker invoker, Task task, IDisposable scope) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 49.4484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.3392ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1021.7625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1032.3874ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/0 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 493.3564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 498.4856ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 607.8481ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 618.3484ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 172.7635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 185.1311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 442.6166ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 448.324ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1393.4365ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1401.3788ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 24252.2816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 24262.1593ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 73.5411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.8904ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1594.164ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1602.9252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 68.379ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 74.7167ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1088.2216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1097.6514ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 124.8629ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 132.5867ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.2713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.975ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 129.1832ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 139.2344ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 278.5765ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 291.7952ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 183.6993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 191.7654ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 449.0754ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 456.8585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 924.7738ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 932.3406ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 2318.1794ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 2328.1057ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.2309ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 48.2944ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 109.0334ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 114.1409ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 264.3169ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 269.1482ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 123.6171ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 138.3186ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.2919ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 82.6381ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 167.235ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 178.7419ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 350.1783ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 358.0087ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 129.1911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 144.3391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 322.3327ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 328.3071ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 125.4458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 138.2449ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.4117ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.9602ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 162.3112ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 172.1095ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/1007/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/1007/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 257.3438ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 272.7241ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 125.2865ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 138.4201ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 375.0113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 385.0997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 900.4458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 916.0345ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17131 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 4119.4434ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 4127.5685ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 46.8015ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 122.1078ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 129.5486ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/1007/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/1007/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 204.1709ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 209.9868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 134.0571ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 150.5135ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 329.1574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 346.5177ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 39.8713ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 44.8054ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/T -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 116.3255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 124.9573ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/T/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 271.8787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 278.3805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 60.8739ms - OK -info: \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123123658_11940.log b/AMESCoreStudio.Web/logs/stdout_20231123123658_11940.log deleted file mode 100644 index fed34623..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123123658_11940.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 3184.7831ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 3196.7558ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 70.6517ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 74.4485ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 78.8696ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 83.7815ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 171.9719ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 176.6403ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 126.2467ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 131.9816ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 173.7916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 178.1615ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Facto \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123124002_9584.log b/AMESCoreStudio.Web/logs/stdout_20231123124002_9584.log deleted file mode 100644 index f4640370..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123124002_9584.log +++ /dev/null @@ -1,58 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 9004.6899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 9014.5119ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 84.3868ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 87.2011ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 81.2231ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 85.2393ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 197.8442ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 206.5346ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 146.1861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 153.4174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 166.2922ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 169.9458ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Facto \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123124351_18212.log b/AMESCoreStudio.Web/logs/stdout_20231123124351_18212.log deleted file mode 100644 index cdf6c10e..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123124351_18212.log +++ /dev/null @@ -1,168 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 7247.2841ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 7257.4899ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 84.0072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 89.0581ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 82.1183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 86.8414ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 212.3311ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 216.9634ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 150.8822ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 156.8582ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 174.188ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 184.0529ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 68.1861ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 72.8616ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 48.7391ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 54.3631ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/Null -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/Null -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.1888ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 66.3784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1045.1255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1051.9085ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 157.8916ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 162.0022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 41.9476ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 47.1773ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 142.1163ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 145.7401ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 433.9196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 440.7655ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 169.0113ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 174.9603ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 365.0608ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 368.5454ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 957.1154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 964.2704ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17044 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17044 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 111.2284ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 123.7866ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 45.7564ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 59.6042ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Standa \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123124442_3644.log b/AMESCoreStudio.Web/logs/stdout_20231123124442_3644.log deleted file mode 100644 index f3e18640..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123124442_3644.log +++ /dev/null @@ -1,168 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5333.3988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5363.9626ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 66.1905ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 71.0519ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 86.7109ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 92.7337ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 200.4974ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 206.7988ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 120.495ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 125.3611ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 140.8317ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 146.2198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 75.3857ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.5347ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 58.2976ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 70.0997ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/Null -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/Null -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 63.1863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 84.8728ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1005.6901ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1016.5439ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 152.9331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 159.1507ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 43.9142ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 52.6453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 145.3811ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 153.9497ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 427.8411ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 433.6274ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 169.2496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 175.7069ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 378.0408ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 381.4039ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 949.7308ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 959.2461ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17044 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17044 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 101.7999ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.5389ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.4138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 76.093ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Standar \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123124826_25816.log b/AMESCoreStudio.Web/logs/stdout_20231123124826_25816.log deleted file mode 100644 index 9c42793f..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123124826_25816.log +++ /dev/null @@ -1,168 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5340.0386ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5359.3819ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 64.0885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 68.331ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 65.0814ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 69.7897ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 167.911ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 175.1033ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 120.1116ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 126.7196ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 156.1625ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 167.3267ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 76.5174ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 83.6805ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 52.3348ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 60.6597ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1196.2129ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1202.2451ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 163.3588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 170.1574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 47.9787ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.1804ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 153.6253ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 160.2121ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 774.9583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 786.6382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17116 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request DELETE http://127.0.0.1:5000/api/StandardWorkTimes/17116 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 187.1855ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 198.3382ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 56.8585ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 64.9653ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 200.248ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 211.5643ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 621.7775ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 627.834ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 187.8933ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 194.6074ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 383.8006ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 388.0705ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 955.6222ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 965.2614ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000 \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123125029_15236.log b/AMESCoreStudio.Web/logs/stdout_20231123125029_15236.log deleted file mode 100644 index a1b08cc9..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123125029_15236.log +++ /dev/null @@ -1,113 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5264.9255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5274.0843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 70.6628ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 76.3873ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 85.2609ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 90.5499ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 163.3279ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 170.0145ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 119.4296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 125.9673ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 139.6498ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 143.2178ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 69.5821ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 75.8165ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 55.6588ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 63.5635ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1086.6215ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1090.7523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 171.1474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 175.4662ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 529.6903ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 535.4826ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 922.2508ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 928.0932ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17113 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 99.1352ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 105.8934ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/D -info: System.Net.Http.HttpClient.AMESCoreStudio.Web \ No newline at end of file diff --git a/AMESCoreStudio.Web/logs/stdout_20231123125228_21956.log b/AMESCoreStudio.Web/logs/stdout_20231123125228_21956.log deleted file mode 100644 index e69de29b..00000000 diff --git a/AMESCoreStudio.Web/logs/stdout_20231123125740_26572.log b/AMESCoreStudio.Web/logs/stdout_20231123125740_26572.log deleted file mode 100644 index cc70e3ea..00000000 --- a/AMESCoreStudio.Web/logs/stdout_20231123125740_26572.log +++ /dev/null @@ -1,224 +0,0 @@ -info: Microsoft.Hosting.Lifetime[0] - Application started. Press Ctrl+C to shut down. -info: Microsoft.Hosting.Lifetime[0] - Hosting environment: Development -info: Microsoft.Hosting.Lifetime[0] - Content root path: D:\安勤\AMESCoreStudio.Web -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request POST http://127.0.0.1:5000/api/Auth/Login -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 5041.198ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 5058.8099ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Auth -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.ClientHandler[101] - Received HTTP response after 74.6556ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IAuth.LogicalHandler[101] - End processing HTTP request after 79.8686ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserInfoes/6 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 64.947ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 69.9265ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/UserRoles/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 176.468ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 181.4843ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RoleModules/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 143.7175ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 150.4751ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/RolePrograms/User/6?page=0&limit=10 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.ClientHandler[101] - Received HTTP response after 156.4993ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.ISYS.LogicalHandler[101] - End processing HTTP request after 163.6761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 67.5574ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 71.9154ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 46.228ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 53.8298ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 1054.9227ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 1065.8983ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 344.2512ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 348.7982ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 348.7022ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 353.7234ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 921.2523ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 934.6453ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17121 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17121 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 95.5252ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.02ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 140.8724ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 150.2255ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 36.0138ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 41.5187ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 843.8192ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 852.1026ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 170.2125ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 178.3072ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 59.85ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 71.4885ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 178.3036ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 189.977ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/B/1001/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 346.329ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 353.7296ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/Stationses -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 185.0183ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 194.2784ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 416.3302ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 422.0863ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/StandardWorkTimes/WHS003AbsoluteItemNo/Null/-99/Apple -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 858.3354ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 872.5761ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17044 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[100] - Sending HTTP request PUT http://127.0.0.1:5000/api/StandardWorkTimes/17044 -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.ClientHandler[101] - Received HTTP response after 92.5474ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[101] - End processing HTTP request after 106.5987ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 151.8964ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 161.2583ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/FactoryUnits -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 51.1496ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 58.0375ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[100] - Start processing HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[100] - Sending HTTP request GET http://127.0.0.1:5000/api/LineInfoes/Unit/B -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.ClientHandler[101] - Received HTTP response after 141.6277ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IBAS.LogicalHandler[101] - End processing HTTP request after 151.2216ms - OK -info: System.Net.Http.HttpClient.AMESCoreStudio.Web.IWHS.LogicalHandler[100] - Start processing HTTP request GET http: \ No newline at end of file From 6a71e091938e6fb0e57ee67b5bc7a9e0cf93f067 Mon Sep 17 00:00:00 2001 From: Sai Date: Thu, 7 Dec 2023 00:01:14 +0800 Subject: [PATCH 3/3] =?UTF-8?q?1.=20=E8=AA=BF=E6=95=B4=20=E6=98=B6?= =?UTF-8?q?=E4=BA=A8=E5=B7=A5=E5=96=AE=E6=9F=A5=E8=A9=A2=E7=A8=8B=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/RPTController.cs | 30 +++------------- AMESCoreStudio.Web/HttpApis/AMES/IESUN.cs | 36 +++++++++++++++++++ AMESCoreStudio.Web/Views/RPT/RPT005.cshtml | 6 ++-- AMESCoreStudio.Web/Views/RPT/RPT005R.cshtml | 17 +++++---- 4 files changed, 52 insertions(+), 37 deletions(-) diff --git a/AMESCoreStudio.Web/Controllers/RPTController.cs b/AMESCoreStudio.Web/Controllers/RPTController.cs index 3bf006bb..91c2c91e 100644 --- a/AMESCoreStudio.Web/Controllers/RPTController.cs +++ b/AMESCoreStudio.Web/Controllers/RPTController.cs @@ -2024,7 +2024,7 @@ namespace AMESCoreStudio.Web.Controllers private async Task GetProductType() { - var result = await _pcsApi.GetProductTypes(); + var result = await _esunApi.GetProductTypes(); var ProductTypes = new List(); for (int i = 0; i < result.Count; i++) @@ -2047,7 +2047,7 @@ namespace AMESCoreStudio.Web.Controllers /// private async Task GetLineInfo(string UnitNo = null) { - var result = await _pcsApi.GetLineInfo(); + var result = await _esunApi.GetLineInfo(); result = result.Where(w => w.StatusNo == "A").OrderBy(o => o.LineID).ToList(); // 有生產製程 多判斷生產製程 @@ -2074,7 +2074,7 @@ namespace AMESCoreStudio.Web.Controllers /// private async Task GetFactoryInfo() { - var result = await _pcsApi.GetFactoryInfo(); + var result = await _esunApi.GetFactoryInfo(); result = result.Where(w => w.StatusNo == "A").OrderBy(o => o.FactoryID).ToList(); var FactoryInfo = new List(); for (int i = 0; i < result.Count; i++) @@ -2090,33 +2090,13 @@ namespace AMESCoreStudio.Web.Controllers ViewBag.FactoryInfoList = FactoryInfo; } - /// - /// 組件資料 - /// - /// - private async Task GetItems() - { - var result = await _pcsApi.GetItems(); - - // 只有狀態是啟用的 - result = result.Where(w => w.StatusNo == "A").OrderBy(o => o.ItemName).ToList(); - - var ItemsList = new List(); - ItemsList.Add(new SelectListItem("請選擇", "")); - for (int i = 0; i < result.Count; i++) - { - ItemsList.Add(new SelectListItem(result[i].ItemName, result[i].ItemNo.ToString())); - } - ViewBag.ItemsList = ItemsList; - } - /// /// 正背面 /// /// private async Task GetMFGType() { - var result = await _pcsApi.GetMFGTypes(); + var result = await _esunApi.GetMFGTypes(); var MFGType = new List(); for (int i = 0; i < result.Count; i++) { @@ -2137,7 +2117,7 @@ namespace AMESCoreStudio.Web.Controllers /// private async Task GetProcessTypes() { - var result = await _pcsApi.GetProcessTypes(); + var result = await _esunApi.GetProcessTypes(); var ProcessType = new List(); for (int i = 0; i < result.Count; i++) diff --git a/AMESCoreStudio.Web/HttpApis/AMES/IESUN.cs b/AMESCoreStudio.Web/HttpApis/AMES/IESUN.cs index 46380ac5..ef25545f 100644 --- a/AMESCoreStudio.Web/HttpApis/AMES/IESUN.cs +++ b/AMESCoreStudio.Web/HttpApis/AMES/IESUN.cs @@ -165,5 +165,41 @@ namespace AMESCoreStudio.Web /// [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/WipBarcodeOther/WipNo/{id}")] ITask GetWipBarcodeOther(string id); + + /// + /// 廠別/委外廠 + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/FactoryInfoes")] + ITask> GetFactoryInfo(); + + /// + /// 線別 + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/LineInfoes")] + ITask> GetLineInfo(); + + /// + /// 產品別 + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/ProductTypes")] + ITask> GetProductTypes(); + + /// + /// 工單類型 + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/ProcessTypes")] + ITask> GetProcessTypes(); + + /// + /// 正背面 + /// + /// + [WebApiClient.Attributes.HttpGet("http://192.168.4.109:5088/api/MFGTypes")] + ITask> GetMFGTypes(); + } } diff --git a/AMESCoreStudio.Web/Views/RPT/RPT005.cshtml b/AMESCoreStudio.Web/Views/RPT/RPT005.cshtml index 67049f22..e327d363 100644 --- a/AMESCoreStudio.Web/Views/RPT/RPT005.cshtml +++ b/AMESCoreStudio.Web/Views/RPT/RPT005.cshtml @@ -79,7 +79,7 @@ table.on('tool(query)', function (obj) { if (obj.event == 'detail') { if (obj.data.wipID) { - hg.open('檢視工單資料', '/RPT/RPT004R/' + obj.data.wipID, '', '', true); + hg.open('檢視昶亨工單資料', '/RPT/RPT005R/' + obj.data.wipID, '', '', true); } } }); @@ -175,11 +175,11 @@ //通过行tool檢視,lay-event="detail" function detail(obj) { if (obj.data.wipID) { - hg.open('檢視工單資料', '/RPT/RPT005R/' + obj.data.wipID, '', '', true); + hg.open('檢視昶亨工單資料', '/RPT/RPT005R/' + obj.data.wipID, '', '', true); } } - var table = hg.table.datatable('query', '工單資料查詢', '/RPT/RPT005Query', {}, tableCols, "", true, 'full-100', ['filter', 'print', 'exports']); + var table = hg.table.datatable('query', '昶亨工單資料查詢', '/RPT/RPT005Query', {}, tableCols, "", true, 'full-100', ['filter', 'print', 'exports']);